diff --git a/templates/base.html b/templates/base.html index 2425148..a5dc1fa 100644 --- a/templates/base.html +++ b/templates/base.html @@ -116,8 +116,14 @@ {% endfor %} {% endif %} - {% for name, link in LINKS %} -
  • {{ name }}
  • + {% 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 %} {% endfor %}