Init commit : base draft

This commit is contained in:
Alexis Fourmaux 2025-03-27 16:03:55 +01:00
commit d29536b71a
14 changed files with 1735 additions and 0 deletions

19
templates/base.html Normal file
View file

@ -0,0 +1,19 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="/simple.css">
<link rel="stylesheet" href="/custom.css">
<title>Ungol Blog</title>
</head>
<body>
<section class="section">
<div class="container">
{% block content %} {% endblock %}
</div>
</section>
</body>
</html>