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

new.html « icons « _includes « build - github.com/ForkAwesome/Fork-Awesome.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c00f93b205388f5cfee4688871271691c852f5a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<{% if page.navbar_active == "icons" %}div{% else %}section{% endif %} id="new">
  <h2 class="page-header">New Icons in {{ site.font_awesome.version }}</h2>
  {% if page.navbar_active != "icons" %}
    <div class="margin-botom-large">
      You asked, Font Awesome delivers with {{ site.font_awesome.new_icon_count }} shiny new icons in version {{ site.font_awesome.version }}.
      Want to request new icons? <a href="{{ page.relative_path }}community/#requesting-new-icons">Here's how</a>.
    </div>
  {% endif %}

  <div class="row the-icons">
    {% assign icons_new = icons | version:site.font_awesome.version %}
    {% for icon in icons_new %}
      <div class="span3"><a href="{{ page.relative_path }}icon/{{ icon.id }}"><i class="icon-{{ icon.id }}"></i> icon-{{ icon.id }}</a></div>
      {% for alias in icon.aliases %}
        <div class="span3"><a href="{{ page.relative_path }}icon/{{ icon.id }}"><i class="icon-{{ alias }}"></i> icon-{{ alias }} <span class="muted">(alias)</span></a></div>
      {% endfor %}
    {% endfor %}
  </div>

</{% if page.navbar_active == "icons" %}div{% else %}section{% endif %}>