summaryrefslogtreecommitdiff
path: root/codex.html
diff options
context:
space:
mode:
authorFranck Cuny <franck.cuny@gmail.com>2014-01-10 17:43:59 -0800
committerFranck Cuny <franck.cuny@gmail.com>2014-01-10 17:43:59 -0800
commitd4e1a0673842b6e3b3218d86cab79709ea458861 (patch)
tree3903a2f99c2ec570c15eae6828e1d9bf4ced48dd /codex.html
parentDelete a draft. (diff)
downloadlumberjaph-d4e1a0673842b6e3b3218d86cab79709ea458861.tar.gz
Rewrite the index and add a page for codex.
Diffstat (limited to 'codex.html')
-rw-r--r--codex.html19
1 files changed, 19 insertions, 0 deletions
diff --git a/codex.html b/codex.html
new file mode 100644
index 0000000..29c19d6
--- /dev/null
+++ b/codex.html
@@ -0,0 +1,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>