summaryrefslogtreecommitdiff
path: root/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'index.html')
-rw-r--r--index.html26
1 files changed, 12 insertions, 14 deletions
diff --git a/index.html b/index.html
index 884466e..5ab67d5 100644
--- a/index.html
+++ b/index.html
@@ -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>