blog/templates/base.html

25 lines
682 B
HTML
Raw Normal View History

2025-12-23 22:27:51 +01:00
<!DOCTYPE html>
2025-12-23 22:27:51 +01:00
<html lang="fr">
2025-12-23 22:27:51 +01:00
<head>
<meta charset="utf-8">
2025-12-23 22:27:51 +01:00
<meta name="viewport" content="width=device-width, initial-scale=1">
2026-01-18 18:55:33 +01:00
<link rel="icon" type="image/x-icon" href="/logos/favicon.ico">
<link rel="stylesheet" href="/styles.css">
2025-12-23 23:13:07 +01:00
{% block rss %}
<link rel="alternate" type="application/atom+xml" title="RSS" href="{{ get_url(path='atom.xml', trailing_slash=false) }}">
{% endblock %}
2025-12-23 22:27:51 +01:00
<title>Ungol Blog</title>
</head>
<body>
2025-12-23 22:27:52 +01:00
{% include "navbar.html" %}
<main>
{% block content %} {% endblock %}
</main>
<footer></footer>
2025-12-23 22:27:51 +01:00
</body>
</html>