diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2022-04-07 18:01:37 +0200 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2022-04-07 19:00:30 +0200 |
commit | 47acc9f083cd1d7dcb553e02a0d20dc41a4417e4 (patch) | |
tree | d2ad54dc3cd714bdddf0fbd0897e2eb0b1cb1124 /_includes | |
parent | css: add class .text-monospace (diff) | |
download | jekyll-theme-47acc9f083cd1d7dcb553e02a0d20dc41a4417e4.tar.gz jekyll-theme-47acc9f083cd1d7dcb553e02a0d20dc41a4417e4.zip |
sidebar: wrap post-header, don't shrink post-date
Diffstat (limited to '')
-rw-r--r-- | _includes/jekyll-theme/sidebar.html | 2 | ||||
-rw-r--r-- | _includes/jekyll-theme/sidebar/latest-posts.html | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/_includes/jekyll-theme/sidebar.html b/_includes/jekyll-theme/sidebar.html index 2ffe91b..89d660d 100644 --- a/_includes/jekyll-theme/sidebar.html +++ b/_includes/jekyll-theme/sidebar.html @@ -1,5 +1,5 @@ {% unless site.settings.sidebar.hide or page.sidebar.hide %} -<div class="row"> +<div class="row sidebar"> {% include jekyll-theme/sidebar/latest-posts.html %} {% include custom-sidebar.html %} {% include jekyll-theme/sidebar/about.html %} diff --git a/_includes/jekyll-theme/sidebar/latest-posts.html b/_includes/jekyll-theme/sidebar/latest-posts.html index a2ac843..17251e3 100644 --- a/_includes/jekyll-theme/sidebar/latest-posts.html +++ b/_includes/jekyll-theme/sidebar/latest-posts.html @@ -10,7 +10,7 @@ <a class="list-group-item" href="{{ post.url | relative_url }}"> <h5 class="list-group-item-heading post-header"> <span>{{ post.title }}</span> - <small><span class="glyphicon glyphicon-time"></span> {{ post.date | date: '%-d %b %Y' }}</small> + <small class="post-date"><span class="glyphicon glyphicon-time"></span> {{ post.date | date: '%-d %b %Y' }}</small> </h5> </a> {% endfor %} |