2016-04-11 18:27:26 +00:00
|
|
|
---
|
|
|
|
layout: default
|
|
|
|
---
|
|
|
|
<div class="home">
|
2016-04-12 06:07:54 +00:00
|
|
|
{% assign last_meta = site.categories.meta.first %}
|
|
|
|
{% if last_meta.active %}
|
|
|
|
<div class="site-update">
|
|
|
|
Site Update:
|
2016-04-12 18:40:02 +00:00
|
|
|
<a href="{{ last_meta.url | prepend: site.baseurl }}">
|
2016-04-12 06:07:54 +00:00
|
|
|
{{ last_meta.title }}
|
2016-04-12 18:40:02 +00:00
|
|
|
</a> ({{ last_meta.date | date: "%Y-%m-%d" }})
|
2016-04-12 06:07:54 +00:00
|
|
|
</div>
|
|
|
|
{% endif %}
|
|
|
|
|
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}}">
|
2016-04-12 05:36:20 +00:00
|
|
|
<a href="{{category.first | prepend: site.baseurl}}">
|
|
|
|
<h1 class="page-heading">{{ site.category_titles[category.first] }}</h1>
|
|
|
|
</a>
|
2016-04-12 04:08:27 +00:00
|
|
|
{% include category_list.html category=category.first limit=5 %}
|
2016-04-11 22:01:41 +00:00
|
|
|
</div>
|
2016-04-11 19:42:53 +00:00
|
|
|
{% endfor %}
|
2016-04-11 18:27:26 +00:00
|
|
|
</div>
|