123456789101112131415161718192021222324252627282930 |
- {% load static%}
- {% load bootstrap4 %}
- <!doctype html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport"
- content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
- <meta http-equiv="X-UA-Compatible" content="ie=edge">
- <title>{% block title %} {% endblock %}</title>
- </head>
- <body>
- <header>
- <a href="{% url 'index' %}">Главная страница</a>
- <a href="{% url 'services' %}">Товары</a>
- {% if user.is_authenticated %}
- <a href="{% url 'profile' %}">Профиль</a>
- <a href="{% url 'logout' %}">Выход</a>
- {% else %}
- <a href="{% url 'register' %}">Регистрация</a>
- <a href="{% url 'login' %}">Вход</a>
- {% endif %}
- </header>
- <main>
- {% block content %} {% endblock %}
- </main>
- </body>
- </html>
|