2016-03-08 05:39:55 +00:00
|
|
|
{% extends 'master.html' %}
|
|
|
|
{% block body %}
|
|
|
|
{% for data in post %}
|
2016-03-27 18:52:05 +00:00
|
|
|
<div class="section-wrapper">
|
|
|
|
<div class="section">
|
|
|
|
<h2>{{ data.title }}</h2>
|
|
|
|
<em>{{ data.updated }}</em>
|
|
|
|
{{ data.text | safe }}
|
|
|
|
</div>
|
2016-03-08 05:39:55 +00:00
|
|
|
</div>
|
|
|
|
{% endfor %}
|
|
|
|
{% endblock %}
|