21 lines
729 B
HTML
21 lines
729 B
HTML
<!DOCTYPE html>
|
|
<html lang="ru">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<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="header">
|
|
<img src="{% static 'logo.svg' %}" />
|
|
<h1>Всё про IT</h1>
|
|
</div>
|
|
<div class="content">
|
|
<h1>Название сатьи должно быть уникально!</h1>
|
|
</div>
|
|
<p><a href="javascript:history.back()">← Назад к редакированию статьи</a></p>
|
|
</body>
|
|
</html> |