annabunches.net/index.html

19 lines
513 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 %}
2016-04-12 02:56:59 +00:00
{% if category.first == "meta" %} {% continue %} {% endif %}
<div class="column col-{{site.categories.size | minus: 1}}">
<a href="{{category.first | prepend: site.baseurl}}">
<h1 class="page-heading">{{ site.category_titles[category.first] }}</h1>
</a>
{% include category_list.html category=category.first limit=5 %}
</div>
2016-04-11 19:42:53 +00:00
{% endfor %}
2016-04-11 18:27:26 +00:00
<div class="site-updates">
</div>
2016-04-11 18:27:26 +00:00
</div>