blob: 884466e9b80e071c6c3e1da5bff74ffb9355912e (
plain) (
tree)
|
|
---
layout: static
title: Writings
---
<h1><a href='/'>Writings</a></h1>
<div id='wrapper'>
<ul>
{% for post in site.posts %}
{% unless post.type == "codex" %}
<li>
<a href="{{ post.url }}">{{ post.title }}</a>
<span class="date">{{ post.date | date_to_string }}</span>
</li>
{% endunless %}
{% endfor %}
</ul>
</div>
|