blob: 96735a68a33e0f9e5b1d4a85a91f3acd77f3e3c8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
{% extends "base.html" %}
{% block subtitle %}
{{ post.title }} |
{% endblock %}
{% block main %}
<article>
<h1 data-text="{{ post.title }}">{{ post.title }}</h1>
<section>{{ post.html | safe }}</section>
</article>
{% endblock %}
|