diff options
| author | Franck Cuny <franck.cuny@gmail.com> | 2014-01-26 22:10:02 -0800 |
|---|---|---|
| committer | Franck Cuny <franck.cuny@gmail.com> | 2014-02-01 10:15:18 -0800 |
| commit | 09ad8a394bf7deae4e5e1b8dca15163933417c28 (patch) | |
| tree | eb1e2413a7c003c8a0a14758c8cac8e8165d3e69 /index.html | |
| parent | draft article for vagrant ansible and aws (diff) | |
| download | lumberjaph-09ad8a394bf7deae4e5e1b8dca15163933417c28.tar.gz | |
Major rewrite to get responsive design.
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> |
