You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
415 B
Markdown

---
layout: page2
title: Posts
order: 1
sidebar: 1
---
<p class="message">
Here you can find all blog postings made to the site sorted by tag.
</p>
{% assign sorted_tags = site.tags | sort %}
<ul>
{% for tag in sorted_tags %}
<h3>{{ tag[0] }}</h3>
{% for post in tag[1] %}
<li>
<a href="{{ post.url }}">{{ post.title }} | {{ post.date | date: "%d-%^b-%Y" }}</a>
</li>
{% endfor %}
{% endfor %}
</ul>