Yak shave the design a bit
[styx.blog] / core / templates / core / post_detail.html
1 {% extends 'core/base.html' %}
2
3 {% block content %}
4
5 <article>
6   <header>
7     <h1>{{ object.title }}</h1>
8
9     <time>{{ post.publication_utc|date:'l, F j, Y' }}</time>
10   </header>
11
12   <main class='body'>
13     {{ object.body_html }}
14   </main>
15 </article>
16
17 {% endblock %}