ParkerTenBroeck.github.io/templates/blog-page.html
Parker TenBroeck 6449151d7a First
2026-01-16 22:02:02 -05:00

19 lines
No EOL
391 B
HTML

{% 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 %}