summaryrefslogtreecommitdiff
path: root/index.html
diff options
context:
space:
mode:
authorFranck Cuny <franck.cuny@gmail.com>2014-01-26 22:10:02 -0800
committerFranck Cuny <franck.cuny@gmail.com>2014-02-01 10:15:18 -0800
commit09ad8a394bf7deae4e5e1b8dca15163933417c28 (patch)
treeeb1e2413a7c003c8a0a14758c8cac8e8165d3e69 /index.html
parentdraft article for vagrant ansible and aws (diff)
downloadlumberjaph-09ad8a394bf7deae4e5e1b8dca15163933417c28.tar.gz
Major rewrite to get responsive design.
Diffstat (limited to '')
-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>