added blog entry template

This commit is contained in:
2026-01-15 10:23:14 +01:00
parent 1a58577b3e
commit 29c2406c04

24
templates/blog_entry.html Normal file
View File

@@ -0,0 +1,24 @@
<!DOCTYPE html>
<html lang="{{config.lang}}">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{{metadata.title}}</title>
</head>
<body>
<header>
<h1>{{metadata.title}}</h1>
</header>
<main>
<article>
{{content}}
</article>
</main>
<footer>
{{footer}}
</footer>
</body>
</html>