diff options
author | Ben Burwell <ben@benburwell.com> | 2017-09-13 22:32:24 -0400 |
---|---|---|
committer | Ben Burwell <ben@benburwell.com> | 2017-09-13 22:32:24 -0400 |
commit | 98b321857b6837ef7deb49a0376cedef06135ab4 (patch) | |
tree | 91c23a0497c143d170da4cbd31cd197f847bde81 /posts | |
parent | 4f6350caf4c65debc65a80225ea27999d151d3fa (diff) |
Redesign
Diffstat (limited to 'posts')
-rw-r--r-- | posts/index.html | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/posts/index.html b/posts/index.html index 6d96cd0..6d0eff3 100644 --- a/posts/index.html +++ b/posts/index.html @@ -8,8 +8,12 @@ redirect_from: /writing/ <h1>Posts</h1> {% for post in site.posts %} -<p class="flex-justify"> - <a href="{{ post.url }}">{{ post.title }}</a> - <time datetime="{{ post.date | date: '%Y-%m-%d' }}">{{ post.date | date: "%-d %B %Y" }}</time> -</p> +<div class="post"> + <div class="post-date"> + <time datetime="{{ post.date | date: '%Y-%m-%d' }}">{{ post.date | date: "%-d %B %Y" }}</time> + </div> + <div class="post-title"> + <a href="{{ post.url }}">{{ post.title }}</a> + </div> +</div> {% endfor %} |