Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- {% load static %}
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <!-- Стилове -->
- <link rel="stylesheet" href="{% static 'css/styles.css' %}">
- <link rel="icon" href="{% static 'images/favicon.png' %}" type="image/x-icon">
- <title>{% block title %}My Website{% endblock %}</title>
- </head>
- <body>
- <header>
- <nav>
- <div class="container">
- <a href="{% url 'index' %}">
- <img width="50" src="{% static 'images/logo.png' %}" alt="Logo">
- My Holiday
- </a>
- <ul>
- <li><a href="{% url 'create pet' %}">Add Pet</a></li>
- <li><a href="{% url 'create photo' %}">Add Photo</a></li>
- <li><a href="{% url 'travelogue_view' %}">Travelogue</a></li>
- {% if request.user.is_authenticated %}
- <li><a href="{% url 'details profile' pk=request.user.pk %}">Profile</a></li>
- <li><a href="{% url 'signout user' %}">Logout</a></li>
- {% else %}
- <li><a href="{% url 'login user' %}">Login</a></li>
- <li><a href="{% url 'register user' %}">Register</a></li>
- {% endif %}
- </ul>
- </div>
- </nav>
- </header>
- <main>
- {% block main_content %}{% endblock %}
- </main>
- <footer>
- <span>© 2024 My Website - All rights reserved.</span>
- </footer>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement