mirror of
https://github.com/ParkerTenBroeck/ParkerTenBroeck.github.io.git
synced 2026-06-07 05:18:40 -04:00
19 lines
No EOL
391 B
HTML
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 %} |