1
0
mirror of https://github.com/vichan-devel/vichan.git synced 2025-01-29 19:37:30 +01:00

Update to font awesome 4

This commit is contained in:
8chan Admin 2013-12-02 21:13:08 +00:00
parent a89f181bab
commit d645efe744

View File

@ -106,21 +106,21 @@
</a>
{% if post.sticky %}
{% if config.font_awesome %}
<i class="icon-pushpin icon"></i>
<i class="fa-thumb-tack fa"></i>
{% else %}
<img class="icon" title="Sticky" src="{{ config.image_sticky }}" alt="Sticky" />
{% endif %}
{% endif %}
{% if post.locked %}
{% if config.font_awesome %}
<i class="icon-lock icon"></i>
<i class="fa-lock fa"></i>
{% else %}
<img class="icon" title="Locked" src="{{ config.image_locked }}" alt="Locked" />
{% endif %}
{% endif %}
{% if post.bumplocked and (config.mod.view_bumplock < 0 or (post.mod and post.mod|hasPermission(config.mod.view_bumplock, board.uri))) %}
{% if config.font_awesome %}
<i class="icon-anchor icon"></i>
<i class="fa-anchor fa"></i>
{% else %}
<img class="icon" title="Bumplocked" src="{{ config.image_bumplocked }}" alt="Bumplocked" />
{% endif %}