Skip to content

Commit

Permalink
Merge pull request mmistakes#234 from roman-yagodin/master
Browse files Browse the repository at this point in the history
Fix glyphicons for categories and tags
  • Loading branch information
marshallshen committed Oct 13, 2014
2 parents 06b747a + d9173c5 commit c77431d
Showing 1 changed file with 2 additions and 2 deletions.
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

0 comments on commit c77431d

Please sign in to comment.