Files
static-site-generator/templates/blog_entry.html
2026-01-15 10:23:14 +01:00

25 lines
420 B
HTML

<!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>