mirror of
https://github.com/ForkAwesome/Fork-Awesome.git
synced 2025-04-06 16:43:22 +08:00
23 lines
1006 B
HTML
23 lines
1006 B
HTML
<section id="spinner">
|
|
<h2 class="page-header">Spinner Icons</h2>
|
|
|
|
<div class="alert alert-success">
|
|
<ul class="fa-ul">
|
|
<li>
|
|
<i class="fa fa-info-circle fa-lg fa-li" aria-hidden="true"></i>
|
|
<strong class="sr-only">Note:</strong>
|
|
These icons work great with the <code>fa-spin</code> class. Check out the
|
|
<a href="{{ page.relative_path }}examples/#animated" class="alert-link">spinning icons example</a>.
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
|
|
<div class="row fontawesome-icon-list">
|
|
{% assign icons_spinner = icons | expand_aliases | where:"categories", "Spinner Icons" | sort_by:'class' %}
|
|
|
|
{% for icon in icons_spinner %}
|
|
<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>
|
|
{% endfor %}
|
|
</div>
|
|
</section>
|