7 lines
300 B
HTML
7 lines
300 B
HTML
{% extends "layout.html" %}
|
|
|
|
{% block content %}
|
|
<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 }}
|
|
{% endblock %} |