| 1 | 1 |
new file mode 100644 |
| ... | ... |
@@ -0,0 +1,18 @@ |
| 1 |
+<section id="new"> |
|
| 2 |
+ <h2 class="page-header">{{ icons | version:site.fontawesome.minor_version | size }} New Icons in {{ site.fontawesome.minor_version }}</h2>
|
|
| 3 |
+ {% if page.navbar_active != "icons" %}
|
|
| 4 |
+ <div class="margin-botom-large"> |
|
| 5 |
+ You asked, Font Awesome delivers with {{ icons | version:site.fontawesome.minor_version | size }} shiny new icons in version {{ site.fontawesome.minor_version }}.
|
|
| 6 |
+ Want to request new icons? <a href="{{ page.relative_path }}community/#requesting-new-icons">Here's how</a>.
|
|
| 7 |
+ </div> |
|
| 8 |
+ {% endif %}
|
|
| 9 |
+ |
|
| 10 |
+ <div class="row fontawesome-icon-list"> |
|
| 11 |
+ {% assign icons_new = icons | expand_aliases | version:site.fontawesome.minor_version | sort_by:'class' %}
|
|
| 12 |
+ |
|
| 13 |
+ {% for icon in icons_new %}
|
|
| 14 |
+ <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>
|
|
| 15 |
+ {% endfor %}
|
|
| 16 |
+ </div> |
|
| 17 |
+ |
|
| 18 |
+</section> |