mirror of
https://github.com/FortAwesome/Font-Awesome.git
synced 2024-11-20 11:14:28 +00:00
13 lines
513 B
HTML
13 lines
513 B
HTML
<section id="video-player">
|
|
<h2 class="page-header">Video Player Icons</h2>
|
|
|
|
<div class="row the-icons">
|
|
{% assign icons_video_player = icons | expand_aliases | category:"Video Player Icons" | sort_by:'id' %}
|
|
|
|
{% for icon in icons_video_player %}
|
|
<div class="span3"><a href="{{ page.relative_path }}icon/{{ icon.id }}"><i class="icon-{{ icon.class }}"></i> icon-{{ icon.class }}{% if icon.alias_of %} <span class="muted">(alias)</span>{% endif %}</a></div>
|
|
{% endfor %}
|
|
</div>
|
|
|
|
</section>
|