Welcome to mirror list, hosted at ThFree Co, Russian Federation.

brand.html « icons « _includes « src - github.com/ForkAwesome/Fork-Awesome.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3243bc83e1c871e6a72de0af2ee118f5af617cb0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<section id="brand">
  <h2 class="page-header">Brand Icons</h2>

  <div class="row fontawesome-icon-list margin-bottom-lg">
    {% 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 }}" 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>

  <div class="alert alert-warning">
    {% include brand-adblock-warning.html %}
  </div>

  <div class="alert alert-success">
    {% include brand-license.html %}
  </div>
</section>