15 lines
573 B
HTML
15 lines
573 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
|
<h1><a class="header" href="#recent" id="recent">{{ page.title }}</a></h1>
|
|
<p class="subtitle"><strong>{{ page.date }}</strong></p>
|
|
{{ page.content | safe }}
|
|
{% if page.taxonomies %}
|
|
<hr>
|
|
<p class="subtitle"><strong>Tags for this post:</strong></p>
|
|
{% for tag in page.taxonomies.tags %}
|
|
<a class="tags" href="{{ get_taxonomy_url(kind="tags", name=tag) }}">{{ tag }}</a>
|
|
{% endfor %}
|
|
{% endif %}
|
|
{% endblock content %}
|