2020-07-13 13:15:09 +02:00
|
|
|
<h2><a href="{{ url_for('blog_post_filename', filename=instance.filename) }}">{{ instance.title }}</a></h2>
|
2021-05-01 16:19:02 +02:00
|
|
|
{% if instance.tags %}
|
|
|
|
<small><i>{{ _("Tags") }}: {% for tag in instance.tags %}
|
|
|
|
<a href="{{ url_for('get_tag', uuid=tag.id) }}">{{ tag.name }}</a>{% if not loop.last %},{% endif %} {% endfor %}</i></small><br>
|
|
|
|
{% endif %}
|
|
|
|
<small><i>{{ _("Created on") }} {{ instance.created_dt|to_dt|format_dt }}</i></small>
|
2020-07-13 13:15:09 +02:00
|
|
|
{{ instance.body|markdown|rawhtmlparse|safe }}
|