2015-01-15 17:05:06 -05:00
< section id = "new" >
2013-10-18 11:05:40 -04:00
< h2 class = "page-header" > {{ icons | version:site.fontawesome.minor_version | size }} New Icons in {{ site.fontawesome.minor_version }}< / h2 >
2013-05-09 15:52:20 -04:00
{% if page.navbar_active != "icons" %}
< div class = "margin-botom-large" >
2013-06-14 16:39:10 -04:00
You asked, Font Awesome delivers with {{ icons | version:site.fontawesome.minor_version | size }} shiny new icons in version {{ site.fontawesome.minor_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-10-05 15:40:57 -04:00
< div class = "row fontawesome-icon-list" >
2014-05-13 22:53:21 -05:00
{% assign icons_new = icons | expand_aliases | version:site.fontawesome.minor_version | sort_by:'class' %}
2013-06-03 08:13:06 -05:00
2013-05-17 21:09:37 -04:00
{% for icon in icons_new %}
2013-10-20 20:15:27 -04:00
< div class = "fa-hover col-md-3 col-sm-4" > < a href = "{{ page.relative_path }}icon/{{ icon.id }}" > < i class = "fa fa-{{ icon.class }}" > < / i > fa-{{ icon.class }}{% if icon.alias_of %} < span class = "text-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
2015-01-15 17:05:06 -05:00
< / section >