base.html 863 B

123456789101112131415161718192021222324252627282930
  1. {% load static%}
  2. {% load bootstrap4 %}
  3. <!doctype html>
  4. <html lang="en">
  5. <head>
  6. <meta charset="UTF-8">
  7. <meta name="viewport"
  8. content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
  9. <meta http-equiv="X-UA-Compatible" content="ie=edge">
  10. <title></title>
  11. </head>
  12. <body>
  13. <header>
  14. <a href="{% url 'index' %}">Главная</a>
  15. <a href="{% url 'services' %}">Товары</a>
  16. {% if user.is_authenticated %}
  17. <a href="{% url 'profile' %}">Профиль</a>
  18. <a href="{% url 'logout' %}">Выход</a>
  19. {% else %}
  20. <a href="{% url 'login' %}">Вход</a>
  21. <a href="{% url 'register' %}">Регистрация</a>
  22. {% endif %}
  23. </header>
  24. <main>
  25. {% block content %} {% endblock %}
  26. </main>
  27. </body>
  28. </html>