diff options
author | David Robillard <d@drobilla.net> | 2022-07-13 15:08:43 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2022-07-13 15:12:18 -0400 |
commit | 7a987f1af58964826d2ae15fe44684ce0167e438 (patch) | |
tree | c84a0b8608624fc1323360cd577a3a74e99cdd60 /themes/lv2 | |
parent | 889f2c3f907b5471db7399e886d7b6778216c02b (diff) | |
download | lv2site-7a987f1af58964826d2ae15fe44684ce0167e438.tar.xz |
Fall back to a text link in the menu if there is no site logo
Diffstat (limited to 'themes/lv2')
-rw-r--r-- | themes/lv2/templates/base.html | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/themes/lv2/templates/base.html b/themes/lv2/templates/base.html index e7e113c..45b8809 100644 --- a/themes/lv2/templates/base.html +++ b/themes/lv2/templates/base.html @@ -33,13 +33,15 @@ <nav> <ul> <li> - <a href="{{ SITEURL }}/" class="navbar-brand"> - {% if SITELOGO %} + {% if SITELOGO %} + <a href="{{ SITEURL }}/" class="navbar-brand"> <img id="logo" alt="{{ SITENAME }}" width="{{ SITELOGO_WIDTH }}" height="{{ SITELOGO_HEIGHT}}" src="{{ SITEURL }}/{{ SITELOGO }}" /> - {% endif %} - </a> + </a> + {% else %} + <a href="{{ SITEURL }}/">{{ SITENAME }}</a> + {% endif %} </li> {% for title, link in MENUITEMS %} |