2014-08-24 08:29:11 -05:00
|
|
|
<section id="payment">
|
|
|
|
<h2 class="page-header">Payment Icons</h2>
|
|
|
|
|
|
|
|
<div class="row fontawesome-icon-list">
|
2014-08-25 16:49:33 -05:00
|
|
|
{% assign icons_payment = icons | expand_aliases | category:"Payment Icons" | sort_by:'class' %}
|
2014-08-24 08:29:11 -05:00
|
|
|
|
2014-08-25 16:49:33 -05:00
|
|
|
{% for icon in icons_payment %}
|
2016-04-01 09:45:15 -04:00
|
|
|
<div class="fa-hover col-md-3 col-sm-4"><a href="{{ page.relative_path }}icon/{{ icon.id }}"><i class="fa fa-{{ icon.class }}" aria-hidden="true"></i> <span class="sr-only">Example of </span>{{ icon.class }}{% if icon.alias_of %} <span class="text-muted">(alias)</span>{% endif %}</a></div>
|
2014-08-24 08:29:11 -05:00
|
|
|
{% endfor %}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</section>
|