43 lines
1.2 KiB
HTML
43 lines
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="ru">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>{{ post.title }}</title>
|
|
{% load static %}
|
|
<link rel="stylesheet" href="{% static 'index.css' %}">
|
|
<link rel="shortcut icon" type="image/png" href="{% static 'favicon.ico' %}"/>
|
|
</head>
|
|
<body>
|
|
<div class="auth-header">
|
|
<div class="logo-div">
|
|
<img src="{% static 'logo.svg' %}" />
|
|
<h1>Всё про IT</h1>
|
|
</div>
|
|
|
|
<div>
|
|
{% block auth %}
|
|
{% if not user.is_anonymous %}
|
|
<a href="/logout/">Выйти</a>
|
|
{% else %}
|
|
<a href="/login/">Вход</a>
|
|
<p class="login-sep">/</p>
|
|
<a href="/registration/">Регистрация</a>
|
|
{% endif %}
|
|
{% endblock %}
|
|
</div>
|
|
</div>
|
|
<h1 class="article-header">{{ post.title }}</h1>
|
|
|
|
<div class="article-meta">
|
|
<p>{{ post.author.first_name }}</p>
|
|
<p>{{ post.created_date }}</p>
|
|
</div>
|
|
|
|
<div>
|
|
{{ post.text|linebreaks }}
|
|
</div>
|
|
|
|
<p><a href="/">← Назад к списку статей</a></p>
|
|
</body>
|
|
</html> |