diff --git a/sass/style.scss b/sass/style.scss index ec8e01a..b1150d3 100644 --- a/sass/style.scss +++ b/sass/style.scss @@ -114,6 +114,10 @@ main.main-content { text-decoration: none; } +.recent-posts .post-summary { + margin-bottom: 2.5em; +} + .post-date { font-size: 10pt; } diff --git a/templates/index.html b/templates/index.html index cee0169..84f13c0 100644 --- a/templates/index.html +++ b/templates/index.html @@ -16,6 +16,7 @@

Recent Posts

{% set blog = get_section(path="blog/_index.md") %} {% for page in blog.pages | slice(end=3) %} +

{{ page.title }}

@@ -25,6 +26,7 @@ {% else %}

{{ page.content | striptags | split(pat=" ") | slice(end=20) | join(sep=" ") | safe }}{% if page.word_count > 20 %}…{% endif %}

{% endif %} +
{% endfor %}