diff options
| author | 2019-07-06 19:49:16 +0200 | |
|---|---|---|
| committer | 2019-07-06 19:49:16 +0200 | |
| commit | 17a0fd0641301daedd6160f05b5c844a8efbeeef (patch) | |
| tree | 3b330194319a240d0e0a17f21de70595034ac6c1 /pydis_site/templates/base | |
| parent | adding hrefs to the more links (diff) | |
Let's only work if there are trailing slashes
Diffstat (limited to 'pydis_site/templates/base')
| -rw-r--r-- | pydis_site/templates/base/navbar.html | 10 | 
1 files changed, 5 insertions, 5 deletions
| diff --git a/pydis_site/templates/base/navbar.html b/pydis_site/templates/base/navbar.html index 65ad8bb4..3e4f782a 100644 --- a/pydis_site/templates/base/navbar.html +++ b/pydis_site/templates/base/navbar.html @@ -61,20 +61,20 @@            More          </a>          <div class="navbar-dropdown"> -          <a class="navbar-item" href="{% url 'wiki:get' path="resources" %}"> +          <a class="navbar-item" href="{% url 'wiki:get' path="resources/" %}">              Resources            </a> -          <a class="navbar-item" href="{% url 'wiki:get' path="frequently-asked-questions" %}"> +          <a class="navbar-item" href="{% url 'wiki:get' path="frequently-asked-questions/" %}">              FAQ            </a> -          <a class="navbar-item" href="{% url 'wiki:get' path="rules" %}"> +          <a class="navbar-item" href="{% url 'wiki:get' path="rules/" %}">              Rules            </a> -          <a class="navbar-item" href="{% url 'wiki:get' path="privacy" %}"> +          <a class="navbar-item" href="{% url 'wiki:get' path="privacy/" %}">              Privacy            </a>            <hr class="navbar-divider"> -          <a class="navbar-item" href="{% url 'wiki:get' path="code-jams" %}"> +          <a class="navbar-item" href="{% url 'wiki:get' path="code-jams/" %}">              Code Jams            </a>          </div> | 
