blog/webapp/templates/blog_post/get.html

7 lines
300 B
HTML
Raw Normal View History

2020-07-08 14:36:13 +02:00
{% extends "layout.html" %}
{% block content %}
2020-07-13 11:54:16 +02:00
<h2><a href="{{ url_for('blog_post_filename', filename=instance.filename) }}">{{ instance.title }}</a></h2>
<small><i>{{ _("Created on") }} {{ instance.created_dt }}</i></small>
{{ instance.body|markdown|rawhtmlparse|safe }}
2020-07-08 14:36:13 +02:00
{% endblock %}