Improve link icon logic
diff --git a/templates/base.html b/templates/base.html
index d2ff903..3c11dd6 100644
--- a/templates/base.html
+++ b/templates/base.html
@@ -60,7 +60,9 @@
<ul>
{% for name, link in SOCIAL %}
- {% set temp = link|lower|replace('http://', '')|replace('https://', '') %}
+ {# Attempt to normalize link URLs #}
+ {% set temp = link|lower|replace('http://', '')|replace('https://', '')|replace('www.', '') %}
+
{% set class = 'fa-external-link-square' %}
{% if MANGLE_EMAILS and temp.startswith('mailto:') %}