diff options
author | Ben Burwell <ben@benburwell.com> | 2015-12-19 20:34:17 -0500 |
---|---|---|
committer | Ben Burwell <ben@benburwell.com> | 2015-12-19 20:34:17 -0500 |
commit | 7bc8ea07e5116fa2e60a2b7e4aeebcbbaa1280c8 (patch) | |
tree | b1e3effc0c74942de46bce344478db22a82e65cc /posts/index.html | |
parent | 721db70654abfd16ebdc9e96c9593749d0a67b78 (diff) |
Major UI update to monokai style
Diffstat (limited to 'posts/index.html')
-rw-r--r-- | posts/index.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/posts/index.html b/posts/index.html index 1aac46e..6d96cd0 100644 --- a/posts/index.html +++ b/posts/index.html @@ -6,10 +6,10 @@ redirect_from: /writing/ --- <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> +<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> {% endfor %} -</ul> |