diff options
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 %} |