diff --git a/themes/tabi/sass/parts/_header.scss b/themes/tabi/sass/parts/_header.scss index 75daa89..ec00420 100644 --- a/themes/tabi/sass/parts/_header.scss +++ b/themes/tabi/sass/parts/_header.scss @@ -98,11 +98,10 @@ header { .tag { margin-inline-end: 0; } - - .separator { - margin-inline-end: 0.2rem; - user-select: none; - } +} +.separator { + margin-inline-end: 0.2rem; + user-select: none; } .language-switcher { diff --git a/themes/tabi/sass/parts/_posts_list.scss b/themes/tabi/sass/parts/_posts_list.scss index 4e976c2..e74f89c 100644 --- a/themes/tabi/sass/parts/_posts_list.scss +++ b/themes/tabi/sass/parts/_posts_list.scss @@ -126,7 +126,7 @@ $padding: 2.5rem; @media only screen and (max-width: 1100px) { .bloglist-container { - grid-template-columns: 1fr; + display: block; } .pinned-label svg { diff --git a/themes/tabi/templates/macros/list_posts.html b/themes/tabi/templates/macros/list_posts.html index 3c51b5b..2076194 100644 --- a/themes/tabi/templates/macros/list_posts.html +++ b/themes/tabi/templates/macros/list_posts.html @@ -83,7 +83,7 @@
{{ post.description }}
+{{ post.description | markdown(inline=true) | safe }}
{% elif post.summary %} -{{ post.summary | striptags | trim_end_matches(pat=".") | safe }}…
+{{ post.summary | markdown(inline=true) | trim_end_matches(pat=".") | safe }}…
{% endif %}