diff options
| author | 2021-10-06 22:38:16 +0100 | |
|---|---|---|
| committer | 2021-10-06 22:38:16 +0100 | |
| commit | 3c2fcb86b7aad1ddca92e54c2fd39693e55109f8 (patch) | |
| tree | 2eab9855ab1a83352a5d83050d8a1fc0524f3285 /pydis_site/templates | |
| parent | Merge pull request #599 from python-discord/fix-http-links (diff) | |
| parent | Merge branch 'master' into subdomains-to-query-paths (diff) | |
Merge pull request #526 from python-discord/subdomains-to-query-paths
Diffstat (limited to 'pydis_site/templates')
| -rw-r--r-- | pydis_site/templates/base/navbar.html | 2 | ||||
| -rw-r--r-- | pydis_site/templates/home/index.html | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/pydis_site/templates/base/navbar.html b/pydis_site/templates/base/navbar.html index ed04995c..4b68dd6c 100644 --- a/pydis_site/templates/base/navbar.html +++ b/pydis_site/templates/base/navbar.html @@ -79,7 +79,7 @@ <a class="navbar-item" href="{% url "content:page_category" location="frequently-asked-questions" %}"> FAQ </a> - <a class="navbar-item" href="{% url 'timeline' %}"> + <a class="navbar-item" href="{% url 'home:timeline' %}"> Timeline </a> <a class="navbar-item" href="{% url "content:page_category" location="rules" %}"> diff --git a/pydis_site/templates/home/index.html b/pydis_site/templates/home/index.html index 77037ef8..985ccae1 100644 --- a/pydis_site/templates/home/index.html +++ b/pydis_site/templates/home/index.html @@ -95,7 +95,7 @@ </p> <div class="buttons are-large is-centered"> - <a href="{% url 'timeline' %}" class="button is-primary"> + <a href="{% url 'home:timeline' %}" class="button is-primary"> <span>Check it out!</span> <span class="icon"> <i class="fas fa-arrow-right"></i> |