diff options
| author | Franck Cuny <franck.cuny@gmail.com> | 2014-01-10 17:43:59 -0800 |
|---|---|---|
| committer | Franck Cuny <franck.cuny@gmail.com> | 2014-01-10 17:43:59 -0800 |
| commit | d4e1a0673842b6e3b3218d86cab79709ea458861 (patch) | |
| tree | 3903a2f99c2ec570c15eae6828e1d9bf4ced48dd /codex.html | |
| parent | Delete a draft. (diff) | |
| download | lumberjaph-d4e1a0673842b6e3b3218d86cab79709ea458861.tar.gz | |
Rewrite the index and add a page for codex.
Diffstat (limited to '')
| -rw-r--r-- | codex.html (renamed from list.md) | 13 |
1 files changed, 6 insertions, 7 deletions
@@ -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> |
