mirror of
https://github.com/FortAwesome/Font-Awesome.git
synced 2024-11-20 11:14:28 +00:00
13 lines
550 B
HTML
13 lines
550 B
HTML
<section id="currency">
|
|
<h2 class="page-header">Currency Icons</h2>
|
|
|
|
<div class="row fontawesome-icon-list">
|
|
{% assign icons_currency = icons | expand_aliases | category:"Currency Icons" | sort_by:'class' %}
|
|
|
|
{% for icon in icons_currency %}
|
|
<div class="col-md-3 col-sm-4"><a href="{{ page.relative_path }}icon/{{ icon.id }}"><i class="fa fa-{{ icon.class }}"></i> {{ site.fontawesome.css_prefix }}-{{ icon.class }}{% if icon.alias_of %} <span class="muted">(alias)</span>{% endif %}</a></div>
|
|
{% endfor %}
|
|
</div>
|
|
|
|
</section>
|