| 1 | 1 |
new file mode 100644 |
| ... | ... |
@@ -0,0 +1,55 @@ |
| 1 |
+--- |
|
| 2 |
+relative_path: ../../ |
|
| 3 |
+--- |
|
| 4 |
+ |
|
| 5 |
+<!DOCTYPE html> |
|
| 6 |
+<html> |
|
| 7 |
+ <head> |
|
| 8 |
+ <link rel="stylesheet" href="{{ page.relative_path }}assets/css/site.css">
|
|
| 9 |
+ <link rel="stylesheet" href="{{ page.relative_path }}assets/font-awesome/css/font-awesome.css">
|
|
| 10 |
+ <script src="https://use.fonticons.com/ffe176a3.js"></script> |
|
| 11 |
+ </head> |
|
| 12 |
+ |
|
| 13 |
+ <body> |
|
| 14 |
+ <div class="container"> |
|
| 15 |
+ <div> |
|
| 16 |
+ <h1>All</h1> |
|
| 17 |
+ <div> |
|
| 18 |
+ {% for icon in icons %}
|
|
| 19 |
+ <i class="fa fa-{{ icon.id }}"></i>{% endfor %}
|
|
| 20 |
+ </div> |
|
| 21 |
+ </div> |
|
| 22 |
+ |
|
| 23 |
+ |
|
| 24 |
+ <div> |
|
| 25 |
+ <h1>All (Unicode)</h1> |
|
| 26 |
+ {% for icon in icons %}
|
|
| 27 |
+ <i class="fa">&#x{{ icon.unicode }}</i>
|
|
| 28 |
+ {% endfor %}
|
|
| 29 |
+ </div> |
|
| 30 |
+ |
|
| 31 |
+ <div> |
|
| 32 |
+ <h1>Non-Brand (Unicode)</h1> |
|
| 33 |
+ |
|
| 34 |
+ {% for icon in icons %}
|
|
| 35 |
+ {% unless icon.categories contains "Brand Icons" %}
|
|
| 36 |
+ <i class="fa">&#x{{ icon.unicode }}</i>
|
|
| 37 |
+ {% endunless %}
|
|
| 38 |
+ {% endfor %}
|
|
| 39 |
+ </div> |
|
| 40 |
+ |
|
| 41 |
+ <div> |
|
| 42 |
+ <h1>Brand (Unicode)</h1> |
|
| 43 |
+ |
|
| 44 |
+ {% for icon in icons %}
|
|
| 45 |
+ {% if icon.categories contains "Brand Icons" %}
|
|
| 46 |
+ <i class="fa">&#x{{ icon.unicode }}</i>
|
|
| 47 |
+ {% endif %}
|
|
| 48 |
+ {% endfor %}
|
|
| 49 |
+ </div> |
|
| 50 |
+ |
|
| 51 |
+ |
|
| 52 |
+ </div> |
|
| 53 |
+ </body> |
|
| 54 |
+ |
|
| 55 |
+</html> |