everything ready !

This commit is contained in:
Agahnim 2026-03-19 14:38:27 +01:00
parent aa5140842e
commit 0cbee2e73e
Signed by: Agahnim
SSH key fingerprint: SHA256:Zj65PJnE0dRYye8Ltk/qDglynyXUxJngQ9qqx/VI+b4
7 changed files with 44 additions and 1 deletions

16
templates/base.html Normal file
View file

@ -0,0 +1,16 @@
<!DOCTYPE html>
<html>
<head>
<title>{% block title %}Mon Site{% endblock %}</title>
<link rel="stylesheet" href="/static/style.css">
</head>
<body>
{% include "partials/header.html" %}
{% block content %}{% endblock %}
</body>
</html>