Skip to content

Commit

Permalink
Fix glyphicons for categories and tags
Browse files Browse the repository at this point in the history
Added missing base "glyphicon" CSS class as described here: http://getbootstrap.com/components/#glyphicons-examples
  • Loading branch information
roman-yagodin committed Oct 13, 2014
1 parent c35069d commit d9173c5
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 d9173c5

Please sign in to comment.