mirror of
https://github.com/ForkAwesome/Fork-Awesome.git
synced 2025-02-08 03:18:25 +08:00
16 lines
590 B
HTML
16 lines
590 B
HTML
<section id="brand">
|
|
<h2 class="page-header">Brand Icons</h2>
|
|
|
|
<div class="alert alert-info">
|
|
{% include brand-license.html %}
|
|
</div>
|
|
|
|
<div class="row the-icons">
|
|
{% assign icons_brand = icons | expand_aliases | category:"Brand Icons" | sort_by:'class' %}
|
|
|
|
{% for icon in icons_brand %}
|
|
<div class="span3"><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>
|