This repository has been archived on 2024-09-18. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
arka-api/templates/base.html
T
2023-03-06 20:27:57 +03:00

27 lines
811 B
HTML
Executable File

<!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>