Yak shave the design a bit
[styx.blog] / core / templates / core / post_list.html
1 {% extends 'core/base.html' %}
2
3 {% block content %}
4
5 {% include 'core/page_nav.html' %}
6
7 {% for post in page_obj %}
8 <article>
9   <header>
10     <h1>
11       <a href='{% url "post-detail" post.slug %}'>
12         {{ post.title }}
13       </a>
14     </h1>
15
16     <time>{{ post.publication_utc|date:'l, F j, Y' }}</time>
17   </header>
18
19   <main class='teaser'>
20     {{ post.teaser_html }}
21   </main>
22
23   <footer>
24     <a href='{% url "post-detail" post.slug %}'>
25       Read more
26     </a>
27   </footer>
28 </article>
29 {% endfor %}
30
31 {% include 'core/page_nav.html' %}
32
33 {% endblock %}