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,19 @@
1
+<section id="brand">
2
+  <h2 class="page-header">Brand Icons</h2>
3
+
4
+  <div class="row fontawesome-icon-list margin-bottom-lg">
5
+    {% assign icons_brand = icons | expand_aliases | category:"Brand Icons" | sort_by:'class' %}
6
+
7
+    {% for icon in icons_brand %}
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
+  <div class="alert alert-warning">
13
+    {% include brand-adblock-warning.html %}
14
+  </div>
15
+
16
+  <div class="alert alert-success">
17
+    {% include brand-license.html %}
18
+  </div>
19
+</section>