mindlair/templates/base.html
Freyja Wildes 7f7222f3f0 [init] Initial commit
Project structure and basic files.

Basic web page with a very simple style and a few links to the blog and
Shaarli.
2025-07-11 04:30:25 +02:00

35 lines
1.2 KiB
HTML

<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="utf-8">
<title>Mindlair</title>
<link rel="icon" href="/favicon.svg" sizes="16x16 32x32 48x48 192x192" type="image/svg+xml">
<link rel="apple-touch-icon" type="image/svg+xml" sizes="60x60 72x72 76x76 114x114 120x120 144x144 152x152 167x167 180x180 1024x1024">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Irrlicht">
<meta property="og:locale" content="fr">
<meta property="og:site_name" content="Mindlair">
<meta property="og:title" content="Mindlair">
<link href="/assets/css/main.css" rel="stylesheet">
</head>
<body>
<header class="banner">
<div class="banner-title">
<span>MINDLAIR</span>
</div>
</header>
{% block content %} {% endblock content %}
<footer>
<hr>
<div class="left">
{{ now() | date(format="%Y") }} — Creative Commons — By Irrlicht
</div>
<div class="right">
Généré avec <a href="https://getzola.org">Zola</a>
</div>
</footer>
</body>
</html>