From b38d6e46c7d897aad9f678f6b1a20b7bd4af404a Mon Sep 17 00:00:00 2001 From: Dave Gandy Date: Tue, 19 Apr 2016 10:41:54 -0400 Subject: [PATCH] Adding a page to copy and paste all icons. --- src/test/all.html | 46 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 src/test/all.html diff --git a/src/test/all.html b/src/test/all.html new file mode 100644 index 000000000..bfb9f2870 --- /dev/null +++ b/src/test/all.html @@ -0,0 +1,46 @@ +--- +relative_path: ../../ +--- + + + + + + + + + + +
+
+

All

+ {% for icon in icons %} + &#x{{ icon.unicode }} + {% endfor %} +
+ +
+

Non-Brand

+ + {% for icon in icons %} + {% unless icon.categories contains "Brand Icons" %} + &#x{{ icon.unicode }} + {% endunless %} + {% endfor %} +
+ +
+

Brand

+ + {% for icon in icons %} + {% if icon.categories contains "Brand Icons" %} + &#x{{ icon.unicode }} + {% endif %} + {% endfor %} +
+ + +
+ + +