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

22 lines
307 B
HTML

<!DOCTYPE html>
<html lang="{{config.lang}}">
<head>
{{page.head}}
</head>
<body>
<header>
<h1>{{metadata.title}}</h1>
</header>
<main>
<article>
{{page.content}}
</article>
</main>
<footer>
{{page.footer}}
</footer>
</body>
</html>