diff options
| author | Christian Cleberg <[email protected]> | 2026-03-05 20:46:28 -0600 |
|---|---|---|
| committer | Christian Cleberg <[email protected]> | 2026-03-05 20:46:28 -0600 |
| commit | bd993b442413a7370e1881ba427c5d1fdfa83183 (patch) | |
| tree | 7b8f748bd834e93aef993112005367ef45d033c2 /theme/templates/base.html | |
| parent | 12b6f3e4463557b8f36abdf0a4638e1bf18a30d2 (diff) | |
| download | cleberg.net-bd993b442413a7370e1881ba427c5d1fdfa83183.tar.gz cleberg.net-bd993b442413a7370e1881ba427c5d1fdfa83183.tar.bz2 cleberg.net-bd993b442413a7370e1881ba427c5d1fdfa83183.zip | |
add favicons
Diffstat (limited to 'theme/templates/base.html')
| -rw-r--r-- | theme/templates/base.html | 3 |
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> |
