aboutsummaryrefslogtreecommitdiffstats
path: root/library/font_awesome/src/_includes/icons/payment.html
blob: 03a636465afd6eb5b10f61fdad9e74b207f94f2c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
<section id="payment">
  <h2 class="page-header">Payment Icons</h2>

  <div class="row fontawesome-icon-list">
    {% assign icons_payment = icons | expand_aliases | category:"Payment Icons" | sort_by:'class' %}

    {% for icon in icons_payment %}
      <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>
    {% endfor %}
  </div>

</section>