diff options
author | Ben Burwell <ben@benburwell.com> | 2019-05-23 09:09:27 -0400 |
---|---|---|
committer | Ben Burwell <ben@benburwell.com> | 2019-05-23 09:09:27 -0400 |
commit | 272673d8c3486ba7496e98302c7ca3c188a114d9 (patch) | |
tree | e94ba7b8162d2c3d2c9085094740048c4e58aa9e /posts/index.html | |
parent | 618e15ee385f5c866bd280571d23fff9a64f9cbe (diff) |
Left-align post titles
Diffstat (limited to 'posts/index.html')
-rw-r--r-- | posts/index.html | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/posts/index.html b/posts/index.html index 08fb912..21a0cf6 100644 --- a/posts/index.html +++ b/posts/index.html @@ -8,11 +8,13 @@ description: Irregularly updated blogish thing about stuff I’m interested in. <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> +<hr/> + {% for post in site.posts %} <h2> - <small>{{post.date | date: "%Y-%m-%d"}}</small> <a href="{{post.url}}">{{post.title}}</a> </h2> -{{post.excerpt}} -{% endfor %} - +<p> + <em>Posted <small>{{post.date | date: "%Y-%m-%d"}}</small></em> +</p> +{{post.excerpt}} {% endfor %} |