blob: 29c19d61c34d6776d8089df72c5d5bf86999a725 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
---
layout: static
title: Codex
---
<h1><a href='/codex.html'>Codex</a></h1>
<div id='wrapper'>
<ul>
{% for post in site.posts %}
{% if post.type == "codex" %}
<li>
<a href="{{ post.url }}">{{ post.title }}</a>
<span class="date">{{ post.date | date_to_string }}</span>
</li>
{% endif %}
{% endfor %}
</ul>
</div>
|