This repository has been archived on 2024-01-13. You can view files and clone it, but cannot push or open issues or pull requests.
arka-mvp/templates/base.html

53 lines
1.8 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title> {% block title %} Арка {% endblock %} </title>
{% load static %}
<link rel="icon" type="image/webp" href="{% static 'favicon.webp' %}">
<link rel="stylesheet" type="text/css" href="{% static 'css/style.css' %}">
{% block styles %} {% endblock %}
</head>
<body>
<header>
<div class="header-wrapper">
<img alt="logo" src="{% static 'favicon.webp' %}">
<div>
<h3>Арка</h3>
<h6>Сайт для анонимного ремонта</h6>
</div>
</div>
<div>
{% if user %}
<h5 style="text-align: right">{{ user.user_name }}</h5>
{% else %}
<h5>Anonim</h5>
{% endif %}
</div>
</header>
{% if user.is_authenticated %}
Добро пожаловать, {{ user.name }} {{ user.surname }}<br>
<a href="{% url 'logout'%}?next={{request.path}}">Выход</a>
{% else %}
Вы не вошли
<a href="{% url 'login'%}?next={{request.path}}">Вход</a>
{% endif %}
<nav>
<a href="{% url 'index' %}">На главную</a>
<a href="{% url 'account' %}">Аккаунт</a>
<a href="{% url 'dev_index' %}">Dev</a>
<a href="{% url 'about' %}">О нас</a>
{# <button id="theme-switcher">Переключить тему</button>#}
</nav>
<main id="content">
{% block content %} тут должен быть контент {% endblock %}
</main>
{# <footer> {% block footer %} {% endblock %} </footer>#}
{# <script src="{% static 'js/main.js' %}"></script>#}
</body>
</html>