diff --git a/sass/parts/_posts_list.scss b/sass/parts/_posts_list.scss index 68026ac..fa8b041 100644 --- a/sass/parts/_posts_list.scss +++ b/sass/parts/_posts_list.scss @@ -45,7 +45,7 @@ } } - .description { + .description p { margin: 0.5rem 0 1rem; color: var(--text-color); font-family: var(--sans-serif-font); diff --git a/templates/macros/list_posts.html b/templates/macros/list_posts.html index e10f52f..3f6c2e3 100644 --- a/templates/macros/list_posts.html +++ b/templates/macros/list_posts.html @@ -32,9 +32,9 @@
{% if post.description %} - {{ post.description }} +

{{ post.description }}

{% elif post.summary %} - {{ post.summary | safe }}… +

{{ post.summary | safe }}…

{% endif %}