diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2022-04-18 21:32:47 +0200 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2022-04-18 21:38:38 +0200 |
commit | aa256c58d1d2bac8ea6e67b8f079f1804edb5ca8 (patch) | |
tree | 491283185ebd0e7955a95b316274e8907d1fb40a /_layouts/post.html | |
parent | posts: redesign feed (diff) | |
download | jekyll-theme-aa256c58d1d2bac8ea6e67b8f079f1804edb5ca8.tar.gz jekyll-theme-aa256c58d1d2bac8ea6e67b8f079f1804edb5ca8.zip |
posts: remove extra spaces in feed
Diffstat (limited to '')
-rw-r--r-- | _layouts/post.html | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/_layouts/post.html b/_layouts/post.html index 740da65..92fa965 100644 --- a/_layouts/post.html +++ b/_layouts/post.html @@ -5,9 +5,13 @@ layout: default <h1>{{ page.title }}</h1> <div class="post-date"> <p class="text-muted"> - {% if page.category %} + {%- comment -%} + Collapse the Liquid whitespace here, so that no extra spaces + between <span>s are introduced. + {%- endcomment -%} + {%- if page.category -%} <span class="glyphicon glyphicon-folder-open"></span> <a class="category" href="{{ '/' | relative_url }}{{ page.category | slugify: 'pretty' }}/">{{ page.category }}</a> - {% endif %} + {%- endif -%} <span class="glyphicon glyphicon-time"></span> {{ page.date | date: '%-d %b %Y' }} </p> </div> |