diff --git a/app/portal/templates/base.html.j2 b/app/portal/templates/base.html.j2
index a1b8ddf..7bbfc5b 100644
--- a/app/portal/templates/base.html.j2
+++ b/app/portal/templates/base.html.j2
@@ -1,3 +1,4 @@
+{% from "icons.html.j2" import icon %}
@@ -62,7 +63,7 @@
- Home
+ {{ icon("house-door") }} Home
@@ -73,31 +74,37 @@
- Groups
+ {{ icon("collection") }} Groups
- Origins
+ {{ icon("hdd-network") }} Web Origins
- Onion Services
+ {{ icon("onion") }} Onion Services
- Tor Bridges
+ {{ icon("rainbow") }} Tor Bridges
- Mirror Lists
+ {{ icon("file-earmark-text") }} Distribution Lists
+
+
+
+
+ {{ icon("file-earmark-excel") }} Block Lists
@@ -108,25 +115,25 @@
- Proxies
+ {{ icon("arrow-down-up") }} Web Proxies
- Smart Proxy Instances
+ {{ icon("globe") }} Smart Proxy Instances
- EOTK Instances
+ {{ icon("server") }} EOTK Instances
- Tor Bridges
+ {{ icon("rainbow") }} Tor Bridges
@@ -137,13 +144,13 @@
- Automation
+ {{ icon("gear") }} Automation
- Alarms
+ {{ icon("bell") }} Alarms
diff --git a/app/portal/templates/icons.html.j2 b/app/portal/templates/icons.html.j2
new file mode 100644
index 0000000..b35e03a
--- /dev/null
+++ b/app/portal/templates/icons.html.j2
@@ -0,0 +1,71 @@
+{% macro icon(i) %}
+ {% if i == "arrow-down-up" %}
+
+ {% elif i == "bell" %}
+
+ {% elif i == "collection" %}
+
+ {% elif i == "file-earmark-excel" %}
+
+ {% elif i == "file-earmark-text" %}
+
+ {% elif i == "hdd-network" %}
+
+ {% elif i == "house-door" %}
+
+ {% elif i == "gear" %}
+
+ {% elif i == "globe" %}
+
+ {% elif i == "rainbow" %}
+
+ {% elif i == "onion" %}
+
+ {% elif i == "server" %}
+
+ {% endif %}
+{% endmacro %}
\ No newline at end of file