summaryrefslogtreecommitdiff
path: root/posts
diff options
context:
space:
mode:
authorBen Burwell <ben@benburwell.com>2015-11-14 14:38:28 -0500
committerBen Burwell <ben@benburwell.com>2015-11-14 14:38:28 -0500
commit0d9ce29b25327f8b31040a7d945121ceaef6dc0d (patch)
treec4dfa0ab427ddd0c97c8c398a07670d820e6474f /posts
parentce236fec927e1ca7991588a374607e53172844e6 (diff)
parentf20aae71dca254e6818632821fb19617985e1cf5 (diff)
Merge pull request #8 from benburwell/redesign
Site redesign (again)
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>