You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
310 B
15 lines
310 B
---
|
|
layout: default
|
|
title: Archiv
|
|
---
|
|
|
|
<div id="home">
|
|
<h1>Archiv</h1>
|
|
<ul class="posts">
|
|
{% assign aposts = site.posts | sort: 'title' %}
|
|
{% for post in aposts %}
|
|
<li><span>{{ post.date | date_to_string }}</span> » <a href="{{ post.url }}">{{ post.title }}</a></li>
|
|
{% endfor %}
|
|
</ul>
|
|
</div>
|