blog/webapp/templates/blog_post/get_single.html
2021-05-01 16:19:02 +02:00

7 lines
475 B
HTML

<h2><a href="{{ url_for('blog_post_filename', filename=instance.filename) }}">{{ instance.title }}</a></h2>
{% 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>
{{ instance.body|markdown|rawhtmlparse|safe }}