14 lines
358 B
HTML
14 lines
358 B
HTML
{% extends "base.html" %}
|
|
{% block content %}
|
|
<article>
|
|
<h1>{{ page.title }}</h1>
|
|
<p class="date">{{ page.date }}</p>
|
|
<div class="post-body">
|
|
{{ page.html|safe }} </div>
|
|
{% for t in page.tags %}
|
|
<a href="{{ url_for('tag', tag_name=t) }}">{{ t }}</a>{% if not loop.last %}, {% endif %}
|
|
{% endfor %}
|
|
</article>
|
|
|
|
|
|
{% endblock %} |