diff options
Diffstat (limited to 'index.html')
| -rw-r--r-- | index.html | 26 |
1 files changed, 12 insertions, 14 deletions
@@ -3,17 +3,15 @@ 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> +<ul class="post-listing"> + {% for post in site.posts %} + <li> + <header class="entry-title"> + <h2> + <a href="{{ post.url }}" title="{{ post.title }}">{{ post.title }}</a> + </h2> + <p class="oneliner">{{ post.summary }}</p> + </header> + </li> + {% endfor %} +</ul> |
