diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2021-11-08 17:47:58 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2021-11-08 17:48:23 +0300 |
commit | fcb49b926c4ec4325f56de27ef7e4b5cae5bd155 (patch) | |
tree | 7b44ecb7d2ef773268785620fbf24eec5aeba3b1 /_layouts/post.html | |
parent | css: misc.css -> fix_bootstrap.css (diff) | |
download | jekyll-theme-fcb49b926c4ec4325f56de27ef7e4b5cae5bd155.tar.gz jekyll-theme-fcb49b926c4ec4325f56de27ef7e4b5cae5bd155.zip |
posts: use CSS for space between category and date
Diffstat (limited to '')
-rw-r--r-- | _layouts/post.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/_layouts/post.html b/_layouts/post.html index 2c0122e..133a95b 100644 --- a/_layouts/post.html +++ b/_layouts/post.html @@ -8,7 +8,7 @@ layout: default {% if page.category %} <span class="glyphicon glyphicon-folder-open"></span> <a class="category" href="{{ '/' | relative_url }}{{ page.category | slugify: 'pretty' }}/">{{ page.category }}</a> {% endif %} - <span class="glyphicon glyphicon-time"></span> {{ page.date | date: '%-d %b %Y' }} + <span class="glyphicon glyphicon-time"></span> {{ page.date | date: '%-d %b %Y' }} </p> </div> </div> |