diff options
Diffstat (limited to 'posts/index.html')
-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 %} |