diff options
author | Alan Pearce | 2023-06-30 16:40:29 +0200 |
---|---|---|
committer | Alan Pearce | 2023-06-30 16:40:29 +0200 |
commit | 416aed825565074c19ab4550766da1623b8bb326 (patch) | |
tree | 7da2111f0a3e7120bf7f5421fce1514788ab6bf4 /themes/bear/templates/base.html | |
parent | f26431f4d0479337f557d5faa7a0bc843c2e81b9 (diff) | |
download | website-416aed825565074c19ab4550766da1623b8bb326.tar.lz website-416aed825565074c19ab4550766da1623b8bb326.tar.zst website-416aed825565074c19ab4550766da1623b8bb326.zip |
Use empty favicon if not configured in theme
Diffstat (limited to 'themes/bear/templates/base.html')
-rw-r--r-- | themes/bear/templates/base.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/themes/bear/templates/base.html b/themes/bear/templates/base.html index a865bac..7fa1991 100644 --- a/themes/bear/templates/base.html +++ b/themes/bear/templates/base.html @@ -3,7 +3,7 @@ <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> - {% include "favicon.html" ignore missing -%} + <link rel="shortcut icon" href="{{ config.extra.favicon | default(value="data:,") }}"> <title>{%- block title %}{{ config.title }}{%- endblock %}</title> <meta name="referrer" content="no-referrer-when-downgrade"> {%- if config.generate_feed %} |