2015-01-15 17:05:06 -05:00
< section id = "new" >
2018-02-05 21:57:05 -05:00
< h2 class = "page-header" > {{ icons | version:site.forkawesome.minor_version | size }} New Icons in {{ site.forkawesome.minor_version }}< / h2 >
2013-05-09 15:52:20 -04:00
{% if page.navbar_active != "icons" %}
< div class = "margin-botom-large" >
2018-02-05 21:57:05 -05:00
You asked, {{ site.forkawesome.name }} delivers with {{ icons | version:site.forkawesome.minor_version | size }} shiny new icons in version {{ site.forkawesome.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" >
2018-02-05 21:57:05 -05:00
{% assign icons_new = icons | expand_aliases | version:site.forkawesome.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 %}
2016-04-01 09:45:15 -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 }}" 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 >
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 >