annabunches.net/index.html

26 lines
612 B
HTML
Raw Normal View History

2016-04-11 18:27:26 +00:00
---
layout: default
---
<div class="home">
2016-04-11 19:42:53 +00:00
{% for category in site.categories %}
<h1 class="page-heading">{{ category }}</h1>
2016-04-11 18:27:26 +00:00
2016-04-11 19:42:53 +00:00
<ul class="post-list">
{% for post in site.categories.{{category}} %}
<li>
<span class="post-meta">{{ post.date | date: "%Y-%m-%d" }}</span>
2016-04-11 18:27:26 +00:00
2016-04-11 19:42:53 +00:00
<h2>
<a class="post-link" href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a>
</h2>
</li>
{% endfor %}
</ul>
2016-04-11 18:27:26 +00:00
2016-04-11 19:42:53 +00:00
{% endfor %}
2016-04-11 18:27:26 +00:00
<p class="rss-subscribe">subscribe <a href="{{ "/feed.xml" | prepend: site.baseurl }}">via RSS</a></p>
</div>