summaryrefslogtreecommitdiff
path: root/posts
diff options
context:
space:
mode:
Diffstat (limited to 'posts')
-rw-r--r--posts/index.html5
1 files changed, 3 insertions, 2 deletions
diff --git a/posts/index.html b/posts/index.html
index 97b6bc7..2158ac9 100644
--- a/posts/index.html
+++ b/posts/index.html
@@ -8,7 +8,8 @@ redirect_from: /writing/
<section>
{% for post in site.posts %}
<h1><a href="{{ post.url }}">{{ post.title }}</a></h1>
- <p><time>{{ post.date | date: "%A, %-d %B %Y" }}</time></p>
- {{ post.content }}
+ <p><time datetime="{{ post.date | date: '%Y-%m-%d' }}">{{ post.date | date: "%A, %-d %B %Y" }}</time></p>
+ {{ post.excerpt }}
+ <p><a href="{{ post.url }}">Continue reading <i class="fa fa-chevron-right"></i></a></p>
{% endfor %}
</section>