initial commit
This commit is contained in:
27
templates/base.html
Executable file
27
templates/base.html
Executable file
@@ -0,0 +1,27 @@
|
||||
<!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="stylesheet" type="text/css" href="{% static 'css/style.css' %}">
|
||||
{% block styles %} {% endblock %}
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="header-wrapper">
|
||||
<header>
|
||||
<img id="logo-image" src="{% static 'favicon.webp' %}" alt="logo image">
|
||||
<div>
|
||||
<span id="logo-text">АРКА</span>
|
||||
<span>API & Документация</span>
|
||||
</div>
|
||||
</header>
|
||||
</div>
|
||||
|
||||
<main id="content">
|
||||
{% block content %} тут должен быть контент {% endblock %}
|
||||
</main>
|
||||
</body>
|
||||
</html>
|
Reference in New Issue
Block a user