69 lines
2.8 KiB
HTML
69 lines
2.8 KiB
HTML
<!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' %}">
|
|
|
|
<!-- Add icon library -->
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
|
|
|
|
{% block styles %} {% endblock %}
|
|
</head>
|
|
|
|
<body>
|
|
<div id="header-wrapper">
|
|
<header>
|
|
<div class="dropdown-wrapper" id="dropdown-in-header">
|
|
<button class="dropdown-button fa fa-bars"></button>
|
|
<div class="dropdown-content">
|
|
<a href="{% url 'index' %}">Главная</a>
|
|
<a href="{% url 'index' %}">Создать заказ</a>
|
|
<a href="{% url 'index' %}">Объявления</a>
|
|
{# <a href="{% url 'index' %}">Все участники</a>#}
|
|
|
|
<!-- это осталось временно, мне нужно чтобы эти ресурсы были доступны с главной -->
|
|
<a href="{% url 'account' %}">Аккаунт</a>
|
|
<a href="{% url 'dev_index' %}">Dev</a>
|
|
</div>
|
|
</div>
|
|
|
|
<img id="logo-image" src="{% static 'favicon.webp' %}" alt="logo image">
|
|
<span id="logo-text">АРКА</span>
|
|
|
|
<a href="{% url 'index' %}">Главная</a>
|
|
<a href="{% url 'index' %}">Создать заказ</a>
|
|
<a href="{% url 'index' %}">Объявления</a>
|
|
{# <a href="{% url 'index' %}">Все участники</a>#}
|
|
|
|
<!-- это осталось временно, мне нужно чтобы эти ресурсы были доступны с главной -->
|
|
<a href="{% url 'account' %}">Аккаунт</a>
|
|
<a href="{% url 'dev_index' %}">Dev</a>
|
|
|
|
<div>
|
|
|
|
</div>
|
|
</header>
|
|
</div>
|
|
|
|
|
|
{% 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 %}
|
|
|
|
<main id="content">
|
|
{% block content %} тут должен быть контент {% endblock %}
|
|
</main>
|
|
|
|
|
|
{# <footer> {% block footer %} {% endblock %} </footer>#}
|
|
{# <script src="{% static 'js/main.js' %}"></script>#}
|
|
</body>
|
|
</html> |