summaryrefslogtreecommitdiff
path: root/posts
diff options
context:
space:
mode:
authorBen Burwell <ben@benburwell.com>2015-11-14 14:25:23 -0500
committerBen Burwell <ben@benburwell.com>2015-11-14 14:25:23 -0500
commit8856c415d16ae558609b615873826816c6718f42 (patch)
treee7a3a83e7cf0fbb75da3fb1517046207917630b8 /posts
parentce236fec927e1ca7991588a374607e53172844e6 (diff)
redesign
Diffstat (limited to 'posts')
-rw-r--r--posts/index.html17
1 files changed, 9 insertions, 8 deletions
diff --git a/posts/index.html b/posts/index.html
index f8b9b1d..1aac46e 100644
--- a/posts/index.html
+++ b/posts/index.html
@@ -1,14 +1,15 @@
---
-layout: master
+layout: blog
title: Posts - Ben Burwell
description: Irregularly updated blogish thing about stuff I’m interested in.
redirect_from: /writing/
---
-<section>
- {% for post in site.posts %}
- <h1><a href="{{ post.url }}">{{ post.title }}</a></h1>
- <p class="muted sans">by Ben Burwell <a href="https://twitter.com/bburwell">@bburwell</a> &bull; <time datetime="{{ post.date | date: '%Y-%m-%d' }}">{{ post.date | date: "%A, %-d %B %Y" }}</time></p>
- {{ post.excerpt }}
- {% endfor %}
-</section>
+<h1>Posts</h1>
+<p>An irregularly updated blogish thing about stuff I’m interested in</p>
+
+<ul>
+{% for post in site.posts %}
+ <li><a href="{{ post.url }}">{{ post.title }}</a> <time datetime="{{ post.date | date: '%Y-%m-%d' }}">{{ post.date | date: "%-d %B %Y" }}</time></li>
+{% endfor %}
+</ul>