summaryrefslogtreecommitdiff
path: root/codex.html
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--codex.html (renamed from list.md)13
1 files changed, 6 insertions, 7 deletions
diff --git a/list.md b/codex.html
index 18fc7a8..29c19d6 100644
--- a/list.md
+++ b/codex.html
@@ -1,20 +1,19 @@
---
layout: static
-title: List of articles
+title: Codex
---
-<h1><a href=''>Lumberjaph</a></h1>
+<h1><a href='/codex.html'>Codex</a></h1>
<div id='wrapper'>
- <h3>Posts</h3>
-
- <ul>
+ <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>
-
+ </ul>
</div>