first commit

This commit is contained in:
julien
2026-03-16 01:47:07 +01:00
commit 8f7e61bda0
185 changed files with 27731 additions and 0 deletions

30
views/layout.twig Normal file
View File

@@ -0,0 +1,30 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{% block title %}Slim Blog{% endblock %}</title>
{% block meta %}
<meta name="description" content="Un blog propulsé par Slim 4.">
{% endblock %}
<link rel="icon" type="image/png" href="/favicon.png">
<link rel="stylesheet" href="/assets/css/main.css">
{% block styles %}{% endblock %}
</head>
<body>
{% include 'partials/_header.twig' %}
<main>
{% block content %}{% endblock %}
</main>
{% include 'partials/_footer.twig' %}
{% block scripts %}{% endblock %}
</body>
</html>