diff options
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> |