diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2021-11-08 09:18:42 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2021-11-08 09:18:42 +0300 |
commit | b4140bf341931dfa10061634e71ebb0d6d7168a6 (patch) | |
tree | f4eef0d4489da6e67285ebbb6d68ec4cab3cb606 /_includes/posts/posts.html | |
parent | shorter dates in post headers (diff) | |
download | jekyll-theme-b4140bf341931dfa10061634e71ebb0d6d7168a6.tar.gz jekyll-theme-b4140bf341931dfa10061634e71ebb0d6d7168a6.zip |
posts: separate category & date visually
Diffstat (limited to '')
-rw-r--r-- | _includes/posts/posts.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/_includes/posts/posts.html b/_includes/posts/posts.html index 94c5b01..71a6d9a 100644 --- a/_includes/posts/posts.html +++ b/_includes/posts/posts.html @@ -12,7 +12,7 @@ {% if post.category %} <span class="glyphicon glyphicon-folder-open"></span> <a class="category" href="{{ '/' | relative_url }}{{ post.category | slugify: 'pretty' }}/">{{ post.category }}</a> {% endif %} - <span class="glyphicon glyphicon-time"></span> {{ post.date | date: '%-d %b %Y' }} + <span class="glyphicon glyphicon-time"></span> {{ post.date | date: '%-d %b %Y' }} </p> </div> </div> |