diff options
Diffstat (limited to 'hyperkitty/templates')
-rw-r--r-- | hyperkitty/templates/base.html | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/hyperkitty/templates/base.html b/hyperkitty/templates/base.html index 5675db7..7a62c5f 100644 --- a/hyperkitty/templates/base.html +++ b/hyperkitty/templates/base.html @@ -38,8 +38,12 @@ <ul class="nav"> + <li class="root{% if not list_address %} active{% endif %}"> + <a href="{% url root %}">{{ app_name|title }}</a> + </li> + {% if list_address %} - <li id="list_name"> + <li id="list_name" class="active"> <a href="{% url list_overview mlist_fqdn=list_address %}">{{list_address}}</a> </li> {% endif %} |