aboutsummaryrefslogtreecommitdiff
path: root/theme/templates
diff options
context:
space:
mode:
authorChristian Cleberg <[email protected]>2026-03-05 20:46:28 -0600
committerChristian Cleberg <[email protected]>2026-03-05 20:46:28 -0600
commitbd993b442413a7370e1881ba427c5d1fdfa83183 (patch)
tree7b8f748bd834e93aef993112005367ef45d033c2 /theme/templates
parent12b6f3e4463557b8f36abdf0a4638e1bf18a30d2 (diff)
downloadcleberg.net-bd993b442413a7370e1881ba427c5d1fdfa83183.tar.gz
cleberg.net-bd993b442413a7370e1881ba427c5d1fdfa83183.tar.bz2
cleberg.net-bd993b442413a7370e1881ba427c5d1fdfa83183.zip
add favicons
Diffstat (limited to 'theme/templates')
-rw-r--r--theme/templates/base.html3
1 files changed, 2 insertions, 1 deletions
diff --git a/theme/templates/base.html b/theme/templates/base.html
index 0e958c5..dbdb3b5 100644
--- a/theme/templates/base.html
+++ b/theme/templates/base.html
@@ -12,7 +12,8 @@
{% if site_description is defined %}<meta name="description" content="{{ site_description }}" >{% endif %}
{% if site_keywords is defined %}<meta name="keywords" content="{{ site_keywords }}" >{% endif %}
<link rel="stylesheet" href="{{ url_for("static", file="styles.min.css") }}" type="text/css">
- <link rel="icon" type="image/x-icon" href="data:,">
+ <link rel="icon" href="{{ url_for("static", file="favicon.svg") }}" type="image/svg+xml">
+ <link rel="icon" href="{{ url_for("static", file="favicon-light.png") }}" type="image/png">
{% block meta %}{% endblock %}
{% endblock %}
</head>