1---
2layout: default
3---
4{% include category/title.html %}
5
6<ul class="list-posts">
7 {% assign empty_category = true %}
8 {% for post in site.posts %}
9 {% if post.categories contains page.category %}
10 <li class="post-teaser">
11 <a href="{{ post.url | prepend: site.baseurl }}">
12 <span class="post-teaser-title">{{ post.title }}</span>
13 <span class="post-teaser-date">{{ post.date | date: "%d %B %Y" }}</span>
14 </a>
15 </li>
16 {% assign empty_category = false %}
17 {% endif %}
18 {% endfor %}
19
20 {% if empty_category %}
21 <li class="empty-post-list">
22 <p>The first article to appear here is currently being written.<p>
23 <p>In the meantime, please go <a href="/">home</a> to see a list of completed posts.</p>
24 </li>
25 {% endif %}
26</ul>
27
28{% include page/explore.html %}