summaryrefslogtreecommitdiff
path: root/posts
diff options
context:
space:
mode:
authorBen Burwell <ben@benburwell.com>2018-09-29 12:28:01 -0400
committerBen Burwell <ben@benburwell.com>2018-09-29 12:28:01 -0400
commit1b4e990cc924d0030eaf8ba487206ad24602b0f4 (patch)
tree57c75e2184615ae039300c45d32ecebed5f9fb6f /posts
parentc492a43ae41de4c27db64ef9d7806db37c7f96f6 (diff)
Improve navigation
Diffstat (limited to 'posts')
-rw-r--r--posts/index.html14
1 files changed, 9 insertions, 5 deletions
diff --git a/posts/index.html b/posts/index.html
index 7f63d3d..63de283 100644
--- a/posts/index.html
+++ b/posts/index.html
@@ -3,12 +3,16 @@ title: Posts - Ben Burwell
description: Irregularly updated blogish thing about stuff I’m interested in.
---
-<h1>Posts</h1>
+<h1><a href="../">../</a> Blog</h1>
-<p>I occasionally write things, and when I do they usually end up here.</p>
+<p>I occasionally write things, and when I do they usually end up here. There's
+also an <a href="/feed.xml">RSS feed</a>.</p>
-<ul>
{% for post in site.posts %}
- <li>{{post.date | date: "%Y-%m-%d"}} <a href="{{post.url}}">{{post.title}}</a></li>
+<h2>
+ <a href="{{post.url}}">{{post.title}}</a>
+</h2>
+<p>Posted on {{post.date | date: "%Y-%m-%d"}}</p>
+{{post.excerpt}}
{% endfor %}
-</ul>
+