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 %}
+ {{ icon.unicode }}
+ {% endfor %}
+
+
+
+
Non-Brand
+
+ {% for icon in icons %}
+ {% unless icon.categories contains "Brand Icons" %}
+ {{ icon.unicode }}
+ {% endunless %}
+ {% endfor %}
+
+
+
+
Brand
+
+ {% for icon in icons %}
+ {% if icon.categories contains "Brand Icons" %}
+ {{ icon.unicode }}
+ {% endif %}
+ {% endfor %}
+
+
+
+
+
+
+