diff --git a/prosopopee/templates/index.html b/prosopopee/templates/index.html index b49ac2c..54ac81c 100644 --- a/prosopopee/templates/index.html +++ b/prosopopee/templates/index.html @@ -21,12 +21,13 @@ - {% for line in settings.menu -%} - {% if loop.first -%} - {{ line }} - {% else -%} - {{ line }} + {% if settings.home -%} + {{ settings.home }} + {% else -%} + HOME {% endif -%} + {% for line in settings.menu -%} + {{ line }} {% endfor -%} diff --git a/prosopopee/templates/menu.html b/prosopopee/templates/menu.html index 9f297f7..0c30c6d 100644 --- a/prosopopee/templates/menu.html +++ b/prosopopee/templates/menu.html @@ -22,12 +22,13 @@ - {% for line in settings.menu -%} - {% if loop.first -%} - {{ line }} + {% if settings.home -%} + {{ settings.home }} {% else -%} - {{ line }} - {% endif -%} + HOME + {% endif -%} + {% for line in settings.menu -%} + {{ line }} {% endfor -%}