diff options
Diffstat (limited to 'posts')
-rw-r--r-- | posts/index.html | 17 |
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> • <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> |