crablog/templates/base.html
2023-10-19 13:40:13 +04:00

27 lines
844 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta name="keywords" content="{% block keywords %}{% endblock keywords %}" />
<link rel="stylesheet" href="/statics/style.css">
<link rel="alternate" type="application/rss+xml" title="{{ setting.title }}" href="/rss" />
<title>{% block title %}Crablog{% endblock title %}</title>
</head>
<body>
{% block body %}
{% endblock body %}
<footer>
<section class="container">
<p> <a href="https://git.aidev.ru/andrey/crablog">Project Crablog</a> </p>
<div style="display:none">{{ setting.analysis | safe }}</div>
</section>
</footer>
<script src="/statics/prism.js" type="text/javascript"></script>
</body>
</html>