diff --git a/templates/base.html b/templates/base.html index a5dc1fa..444872a 100644 --- a/templates/base.html +++ b/templates/base.html @@ -116,14 +116,9 @@ {% endfor %} {% endif %} - {% for link_tuple in LINKS %} - {% if link_tuple|length == 2 %} - {% set name, link = link_tuple %} -
  • {{ name }}
  • - {% else %} - {% set name, link, new_window = link_tuple %} -
  • {{ name }}
  • - {% endif %} + {% for name, link in LINKS %} + {# Open external links in new window, relative links in the same window #} +
  • {{ name }}
  • {% endfor %}