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">
- <!-- Линкове към CSS файлове -->
- <link rel="stylesheet" href="{% static 'css/base.css' %}">
- <link rel="stylesheet" href="{% static 'css/custom.css' %}">
- <!-- Фавикон -->
- <link rel="icon" href="{% static 'images/favicon.png' %}" type="image/x-icon">
- <!-- Заглавие на страницата -->
- <title>My Project</title>
- </head>
- <body>
- <div id="wrapper">
- <header>
- <!-- Основно лого и навигация -->
- <h1>
- <a class="logo" href="{% url 'home' %}">My Project</a>
- </h1>
- <nav>
- <a href="{% url 'home' %}">Home</a>
- <a href="{% url 'about' %}">About</a>
- <a href="{% url 'contact' %}">Contact</a>
- {% if request.user.is_authenticated %}
- <a href="{% url 'profile' pk=request.user.pk %}">Profile</a>
- <a href="{% url 'logout' %}">Logout</a>
- {% else %}
- <a href="{% url 'login' %}">Login</a>
- <a href="{% url 'register' %}">Register</a>
- {% endif %}
- </nav>
- </header>
- <!-- Главно съдържание -->
- <main>
- {% block main_content %}
- <!-- Съдържанието на страницата ще се вмъква тук -->
- {% endblock %}
- </main>
- <!-- Футър -->
- <footer>
- © {{ current_year }} My Project. All rights reserved.
- </footer>
- </div>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement