Skip to content

Commit c77431d

Browse files
committed
Merge pull request #234 from roman-yagodin/master
Fix glyphicons for categories and tags
2 parents 06b747a + d9173c5 commit c77431d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: _includes/themes/bootstrap-3/post.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,15 @@ <h1>{{ page.title }} {% if page.tagline %}<small>{{page.tagline}}</small>{% endi
1313

1414
{% unless page.categories == empty %}
1515
<ul class="tag_box inline">
16-
<li><i class="glyphicon-open"></i></li>
16+
<li><i class="glyphicon glyphicon-open"></i></li>
1717
{% assign categories_list = page.categories %}
1818
{% include JB/categories_list %}
1919
</ul>
2020
{% endunless %}
2121

2222
{% unless page.tags == empty %}
2323
<ul class="tag_box inline">
24-
<li><i class="glyphicon-tags"></i></li>
24+
<li><i class="glyphicon glyphicon-tags"></i></li>
2525
{% assign tags_list = page.tags %}
2626
{% include JB/tags_list %}
2727
</ul>

0 commit comments

Comments
 (0)