first commit

This commit is contained in:
2025-03-07 10:04:42 +00:00
commit f3a71e8d12
23 changed files with 732 additions and 0 deletions

14
views/layout.twig Normal file
View File

@@ -0,0 +1,14 @@
<!doctype html>
<html>
<head>
<title>{% yield title %}</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<base href="https://blog.flumm.io">
<link rel="stylesheet" href="./css/blog.css?v={{ filemtime(__dir__ . '/../../public/css/blog.css') }}">
</head>
<body>
<div class="container" id="blog">
{% yield content %}
</div>
</body>
</html>