blog/templates/base.html
2026-01-18 18:55:33 +01:00

25 lines
No EOL
682 B
HTML

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