aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/_includes
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2022-04-18 21:32:47 +0200
committerEgor Tensin <Egor.Tensin@gmail.com>2022-04-18 21:38:38 +0200
commitaa256c58d1d2bac8ea6e67b8f079f1804edb5ca8 (patch)
tree491283185ebd0e7955a95b316274e8907d1fb40a /_includes
parentposts: redesign feed (diff)
downloadjekyll-theme-aa256c58d1d2bac8ea6e67b8f079f1804edb5ca8.tar.gz
jekyll-theme-aa256c58d1d2bac8ea6e67b8f079f1804edb5ca8.zip
posts: remove extra spaces in feed
Diffstat (limited to '_includes')
-rw-r--r--_includes/jekyll-theme/posts/feed.html8
1 files changed, 6 insertions, 2 deletions
diff --git a/_includes/jekyll-theme/posts/feed.html b/_includes/jekyll-theme/posts/feed.html
index 4fe4a29..cc2f52b 100644
--- a/_includes/jekyll-theme/posts/feed.html
+++ b/_includes/jekyll-theme/posts/feed.html
@@ -7,9 +7,13 @@
<h3>{{ post.title }}</h3>
<div class="post-date">
<p class="text-muted">
- {% if post.category %}
+ {%- comment -%}
+ Collapse the Liquid whitespace here, so that no extra spaces
+ between <span>s are introduced.
+ {%- endcomment -%}
+ {%- if post.category -%}
<span class="glyphicon glyphicon-folder-open"></span>&nbsp;<span class="category">{{ post.category }}</span>
- {% endif %}
+ {%- endif -%}
<span class="glyphicon glyphicon-time"></span>&nbsp;{{ post.date | date: '%-d&nbsp;%b&nbsp;%Y' }}
</p>
</div>