This commit is contained in:
Parker TenBroeck 2026-01-16 22:02:02 -05:00
commit 6449151d7a
38 changed files with 779 additions and 0 deletions

19
templates/blog-page.html Normal file
View file

@ -0,0 +1,19 @@
{% extends "base.html" %}
{% block main %}
<div class="blog-page">
<div class="title">
<h1>{{ page.title }}</h1>
<p><time>{{page.date}}</time>
{% if page.taxonomies %}{% if page.taxonomies.tags %}
{% for tag in page.taxonomies.tags %} • #{{tag}} {% endfor %}
{% endif %}{% endif %}
</p>
</div>
{{ page.content | safe }}
</div>
{% endblock main %}