1
2
3
4
5
6
7
8
9
10
11
12
| <section id="file-type">
| <h2 class="page-header">File Type Icons</h2>
|
| <div class="row fontawesome-icon-list">
| {% assign icons_file_type = icons | expand_aliases | category:"File Type Icons" | sort_by:'class' %}
|
| {% for icon in icons_file_type %}
| <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> {{ icon.class }}{% if icon.alias_of %} <span class="text-muted">(alias)</span>{% endif %}</a></div>
| {% endfor %}
| </div>
|
| </section>
|
|