Browse code

Created repository.

DoubleBastionAdmin authored on 02/03/2022 00:26:46
Showing 1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,22 @@
1
+<section id="spinner">
2
+  <h2 class="page-header">Spinner Icons</h2>
3
+
4
+  <div class="alert alert-success">
5
+    <ul class="fa-ul">
6
+      <li>
7
+        <i class="fa fa-info-circle fa-lg fa-li" aria-hidden="true"></i>
8
+        <strong class="sr-only">Note:</strong>
9
+        These icons work great with the <code>fa-spin</code> class. Check out the
10
+        <a href="{{ page.relative_path }}examples/#animated" class="alert-link">spinning icons example</a>.
11
+      </li>
12
+    </ul>
13
+  </div>
14
+
15
+  <div class="row fontawesome-icon-list">
16
+    {% assign icons_spinner = icons | expand_aliases | category:"Spinner Icons" | sort_by:'class' %}
17
+
18
+    {% for icon in icons_spinner %}
19
+      <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>
20
+    {% endfor %}
21
+  </div>
22
+</section>