picopaper/theme/default/templates/post.tmpl
2025-10-09 15:59:47 +02:00

21 lines
435 B
Cheetah

<!DOCTYPE html>
<html lang="en">
<head>
{% include 'meta.tmpl' %}
</head>
<body>
{% include 'header.tmpl' %}
<main>
<article class="post">
<div class="post-meta">{{ post.date }}</div>
<h2>{{ post.title }}</h2>
<div class="post-content">
{{ post.content | safe }}
</div>
</article>
</main>
{% include 'footer.tmpl' %}
</body>
</html>