mirror of
https://github.com/FortAwesome/Font-Awesome.git
synced 2025-02-07 19:08:22 +08:00
20 lines
691 B
HTML
20 lines
691 B
HTML
<section id="brand">
|
|
<h2 class="page-header">Brand Icons</h2>
|
|
|
|
<div class="alert alert-success">
|
|
{% include brand-license.html %}
|
|
</div>
|
|
|
|
<div class="alert alert-warning">
|
|
{% include brand-adblock-warning.html %}
|
|
</div>
|
|
|
|
<div class="row fontawesome-icon-list">
|
|
{% assign icons_brand = icons | expand_aliases | category:"Brand Icons" | sort_by:'class' %}
|
|
|
|
{% for icon in icons_brand %}
|
|
<div class="fa-hover col-md-3 col-sm-4"><a href="{{ page.relative_path }}icon/{{ icon.id }}"><i class="fa fa-{{ icon.class }}"></i> fa-{{ icon.class }}{% if icon.alias_of %} <span class="text-muted">(alias)</span>{% endif %}</a></div>
|
|
{% endfor %}
|
|
</div>
|
|
</section>
|