Skip to content

Latest commit

 

History

History
41 lines (33 loc) · 900 Bytes

index.md

File metadata and controls

41 lines (33 loc) · 900 Bytes

Welcome to my site

Here's a list of posts


Filed Under #{{ page.tag }}

{% for post in site.categories[page.tag] %}
    {% include post_preview.html %}
{% endfor %}

{% for category in site.categories %}
{% capture category_name %}{{ category | first }}{% endcapture %}

<h3 class="category-head">{{ category_name }}</h3>
<a name="{{ category_name | slugize }}"></a>
{% for post in site.categories[category_name] %}
<article>
  <h4><a href="{{ site.baseurl }}{{ post.url }}">{{post.title}}</a></h4>
</article>
{% endfor %}
{% endfor %}