blob: 884466e9b80e071c6c3e1da5bff74ffb9355912e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
---
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>
|