2013-05-09 15:52:20 -04:00
|
|
|
<{% if page.navbar_active == "icons" %}div{% else %}section{% endif %} id="new">
|
2013-05-23 16:22:45 -04:00
|
|
|
<h2 class="page-header">New Icons in {{ site.fontawesome.version }}</h2>
|
2013-05-09 15:52:20 -04:00
|
|
|
{% if page.navbar_active != "icons" %}
|
|
|
|
<div class="margin-botom-large">
|
2013-05-23 16:22:45 -04:00
|
|
|
You asked, Font Awesome delivers with {{ icons | version:site.fontawesome.version | size }} shiny new icons in version {{ site.fontawesome.version }}.
|
2013-05-09 15:52:20 -04:00
|
|
|
Want to request new icons? <a href="{{ page.relative_path }}community/#requesting-new-icons">Here's how</a>.
|
2013-05-03 10:41:31 -04:00
|
|
|
</div>
|
|
|
|
{% endif %}
|
2013-05-02 20:12:33 -04:00
|
|
|
|
2013-05-17 21:09:37 -04:00
|
|
|
<div class="row the-icons">
|
2013-06-06 15:18:20 +02:00
|
|
|
{% assign icons_new = icons | expand_aliases | version:site.fontawesome.version %}
|
2013-06-03 08:13:06 -05:00
|
|
|
|
2013-05-17 21:09:37 -04:00
|
|
|
{% for icon in icons_new %}
|
2013-06-03 08:13:06 -05:00
|
|
|
<div class="span3"><a href="{{ page.relative_path }}icon/{{ icon.id }}"><i class="icon-{{ icon.class }}"></i> icon-{{ icon.class }}{% if icon.alias_of %} <span class="muted">(alias)</span>{% endif %}</a></div>
|
2013-05-17 21:09:37 -04:00
|
|
|
{% endfor %}
|
2013-05-02 20:12:33 -04:00
|
|
|
</div>
|
2013-05-17 21:09:37 -04:00
|
|
|
|
2013-05-09 15:52:20 -04:00
|
|
|
</{% if page.navbar_active == "icons" %}div{% else %}section{% endif %}>
|