2016-04-11 18:27:26 +00:00
|
|
|
---
|
|
|
|
layout: default
|
|
|
|
---
|
|
|
|
<div class="home">
|
2016-05-04 19:16:23 +00:00
|
|
|
<div class="category-menu">
|
|
|
|
{% for category in site.categories %}
|
|
|
|
{% if category.first == "meta" %} {% continue %} {% endif %}
|
|
|
|
<span class="category-link">
|
|
|
|
<a href="{{category.first | prepend: site.baseurl}}">
|
|
|
|
{{ site.category_titles[category.first] }}
|
|
|
|
</a>
|
|
|
|
</span>
|
|
|
|
{% endfor %}
|
|
|
|
</div>
|
|
|
|
|
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-05-04 19:16:23 +00:00
|
|
|
{% include post_list.html categories=site.main_categories limit=5 %}
|
2016-04-11 18:27:26 +00:00
|
|
|
</div>
|