diff --git a/templates/index.html b/templates/index.html index 28e650f..895fbf4 100644 --- a/templates/index.html +++ b/templates/index.html @@ -8,14 +8,14 @@ {% set blog = get_section(path="blog/_index.md") %} {% for post in blog.pages %} -{{ post.date }} {{ post.title }}
+{{ post.date }}{{ post.title }}
{% endfor %}

Reading

{% set reading = get_section(path="reading/_index.md") %} {% for post in reading.pages %} -{{ post.date}} {{ post.title }}
+{{ post.date}}{{ post.title }}
{% endfor %} {% endblock %}