Remove slash before external links

main
Georg Krause 2019-05-16 13:00:30 +02:00
parent 50ae18d8be
commit 2ef401308e
1 changed files with 1 additions and 1 deletions

View File

@ -46,7 +46,7 @@
{% endif %} {% endif %}
{% if LINKS|length > 0 %} {% if LINKS|length > 0 %}
{% for title, link in LINKS %} {% for title, link in LINKS %}
<li class="pure-menu-item"><a href="/{{ link }}" class="pure-menu-link">{{ title }}</a></li> <li class="pure-menu-item"><a href="{{ link }}" class="pure-menu-link">{{ title }}</a></li>
{% endfor %} {% endfor %}
{% endif %} {% endif %}
</ul> </ul>