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,12 @@
1
+<section id="text-editor">
2
+  <h2 class="page-header">Text Editor Icons</h2>
3
+
4
+  <div class="row fontawesome-icon-list">
5
+    {% assign icons_text_editor = icons | expand_aliases | category:"Text Editor Icons" | sort_by:'class' %}
6
+
7
+    {% for icon in icons_text_editor %}
8
+      <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>
9
+    {% endfor %}
10
+  </div>
11
+
12
+</section>