brouilleursdeblanc/articles.html
2014-01-02 15:28:13 -05:00

12 lines
401 B
HTML

---
layout: page
permalink: /articles/
title: Articles
description: "An archive of posts sorted by date."
---
<ul class="post-list">
{% for post in site.posts %}
<li><article><a href="{{ site.url }}{{ post.url }}">{{ post.title }} <span class="entry-date"><time datetime="{{ post.date | date_to_xmlschema }}">{{ post.date | date: "%B %d, %Y" }}</time></span></a></article></li>
{% endfor %}
</ul>