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

chart.html « icons « _includes « src - github.com/ForkAwesome/Fork-Awesome.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f5cbc1ccad41f16f21d1fb62c1e94f90536304cc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<section id="chart">
  <h2 class="page-header">Chart Icons</h2>

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

    {% for icon in icons_chart %}
      <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>