Files
jimeh.me-v3.0/source/blog/archive/index.html
Jim Myhrberg 5106f753c0 restructured everything
Split the site and blog apart into two separate
jekyll sites, so pagination would work with a
`/blog/pageX` URLs, among other things.
2010-01-29 13:31:06 +02:00

16 lines
305 B
HTML

---
layout: post-archive
title: jimeh / blog
---
<div class="archive-list">
<h1>Archive</h1>
<ul>
{% for post in site.posts %}
<li>
<span class="date">{{ post.date | date: "%d-%b-%Y" }}</span>
<a href="/blog{{ post.url }}" class="title">{{ post.title }}</a>
</li>
{% endfor %}
</ul>
</div>