diff --git a/_app/_includes/_amsf.html b/_app/_includes/_amsf.html
index 7859632ed..36b98a3a8 100644
--- a/_app/_includes/_amsf.html
+++ b/_app/_includes/_amsf.html
@@ -61,9 +61,36 @@
Favicons
{% endcomment %}
{% capture amsf_favicon %}{{ '/favicon.ico' | prepend: site.base }}{% endcapture %}
+{% capture amsf_favicon_png %}{{ '/favicon.png' | prepend: site.base }}{% endcapture %}
{% capture amsf_favicon_svg %}{{ '/favicon.svg' | prepend: site.base }}{% endcapture %}
+{% capture amsf_mask_icon %}{{ '/mask-icon.svg' | prepend: site.base }}{% endcapture %}
{% capture amsf_apple_touch_icon %}{{ '/apple-touch-icon.png' | prepend: site.base }}{% endcapture %}
+{% capture amsf_favicons %}
+ {% if site.base != "" %}
+
+ {% endif %}
+
+ {% for static_file in site.static_files %}
+ {% if static_file.path == '/favicon.png' %}
+
+ {% endif %}
+
+ {% if static_file.path == '/favicon.svg' %}
+
+ {% endif %}
+
+ {% if static_file.path == '/mask-icon.svg' %}
+
+ {% endif %}
+
+ {% if static_file.path == '/apple-touch-icon.png' %}
+
+ {% endif %}
+ {% endfor %}
+{% endcapture %}
+
+
{% comment %}
Feed URL
{% endcomment %}
diff --git a/_app/_includes/themes/curtana/includes/top.html b/_app/_includes/themes/curtana/includes/top.html
index ae47241a5..3aebe3ab8 100644
--- a/_app/_includes/themes/curtana/includes/top.html
+++ b/_app/_includes/themes/curtana/includes/top.html
@@ -15,14 +15,7 @@
-{% if site.base != "" %}
-
-
-
-{% endif %}
-
-
-
+{{ amsf_favicons }}
diff --git a/_app/favicon.ico b/_app/favicon.ico
index d2b48b7d0..33ba84175 100644
Binary files a/_app/favicon.ico and b/_app/favicon.ico differ
diff --git a/_app/favicon.png b/_app/favicon.png
new file mode 100644
index 000000000..9c92c235c
Binary files /dev/null and b/_app/favicon.png differ
diff --git a/_app/favicon.svg b/_app/favicon.svg
index 9fa422001..b5f314f70 100644
--- a/_app/favicon.svg
+++ b/_app/favicon.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
diff --git a/_app/mask-icon.svg b/_app/mask-icon.svg
new file mode 100644
index 000000000..9fa422001
--- /dev/null
+++ b/_app/mask-icon.svg
@@ -0,0 +1 @@
+
\ No newline at end of file