Premier commit

This commit is contained in:
Florestan Bredow
2025-05-31 12:30:19 +02:00
commit 73ec7dec65
18 changed files with 690 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
<!DOCTYPE html>
<html lang="{{ lang|default("fr") }}">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="css/styles.css">
<title>{{ title }}</title>
</head>
<body>
<h1>{{ title }}</h1>
<p id="intro">{{ presentation }}</p>
<ul>
{% for key, page in pages.items()|sort(attribute='1.date', reverse = true) %}
<li>{{ page.date }} : <a href="./pages/{{ key }}.html">{{ page.title }}</a>{% endfor %}
</ul>
</body>
</html>