2013-05-10 03:52:20 +08:00
< {% if page.navbar_active == "icons" %}div{% else %}section{% endif %} id="new">
2013-06-15 04:39:10 +08:00
< h2 class = "page-header" > New Icons in {{ site.fontawesome.minor_version }}< / h2 >
2013-05-10 03:52:20 +08:00
{% if page.navbar_active != "icons" %}
< div class = "margin-botom-large" >
2013-06-15 04:39:10 +08: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-10 03:52:20 +08:00
Want to request new icons? < a href = "{{ page.relative_path }}community/#requesting-new-icons" > Here's how< / a > .
2013-05-03 22:41:31 +08:00
< / div >
{% endif %}
2013-05-03 08:12:33 +08:00
2013-10-06 03:40:57 +08:00
< div class = "row fontawesome-icon-list" >
2013-06-15 04:39:10 +08:00
{% assign icons_new = icons | expand_aliases | version:site.fontawesome.minor_version %}
2013-06-03 21:13:06 +08:00
2013-05-18 09:09:37 +08:00
{% for icon in icons_new %}
2013-10-06 03:40:57 +08:00
< div class = "col-md-3" > < a href = "{{ page.relative_path }}icon/{{ icon.id }}" > < i class = "fa fa-{{ icon.class }}" > < / i > {{ site.fontawesome.css_prefix }}-{{ icon.class }}{% if icon.alias_of %} < span class = "muted" > (alias)< / span > {% endif %}< / a > < / div >
2013-05-18 09:09:37 +08:00
{% endfor %}
2013-05-03 08:12:33 +08:00
< / div >
2013-05-18 09:09:37 +08:00
2013-05-10 03:52:20 +08:00
< /{% if page.navbar_active == "icons" %}div{% else %}section{% endif %}>