Advertisement
horozov86

default base.html

Oct 21st, 2024
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 1.64 KB | None | 0 0
  1. {% load static %}
  2.  
  3. <!DOCTYPE html>
  4. <html lang="en">
  5. <head>
  6.     <meta charset="UTF-8">
  7.     <meta name="viewport" content="width=device-width, initial-scale=1.0">
  8.    
  9.     <!-- Стилове -->
  10.     <link rel="stylesheet" href="{% static 'css/styles.css' %}">
  11.     <link rel="icon" href="{% static 'images/favicon.png' %}" type="image/x-icon">
  12.     <title>{% block title %}My Website{% endblock %}</title>
  13. </head>
  14. <body>
  15.  
  16.     <header>
  17.         <nav>
  18.             <div class="container">
  19.                 <a href="{% url 'index' %}">
  20.                     <img width="50" src="{% static 'images/logo.png' %}" alt="Logo">
  21.                     My Holiday
  22.                 </a>
  23.                 <ul>
  24.                     <li><a href="{% url 'create pet' %}">Add Pet</a></li>
  25.                     <li><a href="{% url 'create photo' %}">Add Photo</a></li>
  26.                     <li><a href="{% url 'travelogue_view' %}">Travelogue</a></li>
  27.                     {% if request.user.is_authenticated %}
  28.                         <li><a href="{% url 'details profile' pk=request.user.pk %}">Profile</a></li>
  29.                         <li><a href="{% url 'signout user' %}">Logout</a></li>
  30.                     {% else %}
  31.                         <li><a href="{% url 'login user' %}">Login</a></li>
  32.                         <li><a href="{% url 'register user' %}">Register</a></li>
  33.                     {% endif %}
  34.                 </ul>
  35.             </div>
  36.         </nav>
  37.     </header>
  38.  
  39.     <main>
  40.         {% block main_content %}{% endblock %}
  41.     </main>
  42.  
  43.     <footer>
  44.         <span>&copy; 2024 My Website - All rights reserved.</span>
  45.     </footer>
  46.  
  47. </body>
  48. </html>
  49.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement