summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHiro <me@hiro7.eu>2018-07-04 12:38:01 +0000
committerHiro <me@hiro7.eu>2018-07-04 12:38:01 +0000
commit3babe08ffbe0855ddaa2369baf7249a038b8e582 (patch)
treebf8db74c7b2c6012fd16759a28f83717700a0c8a
parentb4abf37e39fc71ac12b7238a1e7aedb6a22e3c6e (diff)
parenta26b64da9720349b6f908e7f66433da801bc89ba (diff)
Merge branch 'fixlinks' into 'master'
Remove url filter as it works on relative links See merge request infra/portal!2
-rw-r--r--templates/footer.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/footer.html b/templates/footer.html
index 659a930c..2a9aeab5 100644
--- a/templates/footer.html
+++ b/templates/footer.html
@@ -9,7 +9,7 @@
{% set menubag = 'menu+' + this.alt %}
{% for id, item in bag(menubag).items() %}
<li{% if this.is_child_of(item.path) %} class="nav-item active" {% else %} class="nav-item"{% endif %}>
- <a class="nav-link text-light" href="{{ item.path|url }}">{{ item.label }}
+ <a class="nav-link text-light" href="{{ item.path }}">{{ item.label }}
{% if this.is_child_of(item.path) %}
<span class="sr-only">(current)</span>
{% endif %}