Skip to content
This repository was archived by the owner on Nov 30, 2024. It is now read-only.

Fixed the problem on displaying icons. #231

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions _includes/themes/bootstrap-3/post.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@ <h1>{{ page.title }} {% if page.tagline %}<small>{{page.tagline}}</small>{% endi

{% unless page.categories == empty %}
<ul class="tag_box inline">
<li><i class="glyphicon-open"></i></li>
<li><i class="glyphicon glyphicon-open"></i></li>
{% assign categories_list = page.categories %}
{% include JB/categories_list %}
</ul>
{% endunless %}

{% unless page.tags == empty %}
<ul class="tag_box inline">
<li><i class="glyphicon-tags"></i></li>
<li><i class="glyphicon glyphicon-tags"></i></li>
{% assign tags_list = page.tags %}
{% include JB/tags_list %}
</ul>
Expand Down