diff options
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 %} |