migrated to new version of FontAwesome (using CDN)

This commit is contained in:
Pierre-Antoine Champin 2019-04-27 21:50:12 +02:00
commit efa3235ec3
10 changed files with 9 additions and 2684 deletions

View file

@ -21,16 +21,16 @@
<header class="col-sm-4 text-muted">
<ul>
<li title="{{ article.date.isoformat() }}">
<i class="fa fa-clock-o"></i>
<i class="fas fa-clock"></i>
{{ article.locale_date }}
</li>
<li>
<i class="fa fa-folder-open-o"></i>
<i class="fas fa-folder-open"></i>
<a href="{{ SITEURL }}/{{ article.category.url }}">{{ article.category }}</a>
</li>
{% if not HIDE_AUTHORS and article.authors %}
<li>
<i class="fa fa-user-o"></i>
<i class="fas fa-user"></i>
{% for author in article.authors %}
<a href="{{ SITEURL }}/{{ author.url }}">{{ author }}</a>{% if not loop.last %}, {% endif %}
{% endfor %}