aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAhmed <ahmed@gumx.cc>2024-11-17 21:44:42 +0200
committerAhmed <ahmed@gumx.cc>2024-11-17 21:58:50 +0200
commit30dd31fbc558597110f373b3ef1e0c75ea350f75 (patch)
tree80fa514119c841866e1df49a51c5c4d2b395492f
parent0cdb6a3634789216ef6129c39ee2536f7f051c3f (diff)
parent113bf01c03f0260a4b8b8de4ba5247e600cf56e4 (diff)
fix: `..` path in taxonomies
Merge branch '0poss/dodot-path-fix' By [0poss](gitlab.com/0poss) Fix '..' path in categories, contexts and tags
-rw-r--r--templates/categories/single.html2
-rw-r--r--templates/contexts/single.html2
-rw-r--r--templates/tags/single.html2
3 files changed, 3 insertions, 3 deletions
diff --git a/templates/categories/single.html b/templates/categories/single.html
index 7a3ab44..f2adfcb 100644
--- a/templates/categories/single.html
+++ b/templates/categories/single.html
@@ -1,7 +1,7 @@
{% extends "base.html" %}
{% block header %}
-<p><a href="{{ current_path }}">..</a>/{{ term.slug }}/</p>
+<p><a href="{{ current_path }}..">..</a>/{{ term.slug }}/</p>
<h1>{{ term.name }}</h1>
{% endblock header %}
diff --git a/templates/contexts/single.html b/templates/contexts/single.html
index 7a3ab44..f2adfcb 100644
--- a/templates/contexts/single.html
+++ b/templates/contexts/single.html
@@ -1,7 +1,7 @@
{% extends "base.html" %}
{% block header %}
-<p><a href="{{ current_path }}">..</a>/{{ term.slug }}/</p>
+<p><a href="{{ current_path }}..">..</a>/{{ term.slug }}/</p>
<h1>{{ term.name }}</h1>
{% endblock header %}
diff --git a/templates/tags/single.html b/templates/tags/single.html
index 7a3ab44..f2adfcb 100644
--- a/templates/tags/single.html
+++ b/templates/tags/single.html
@@ -1,7 +1,7 @@
{% extends "base.html" %}
{% block header %}
-<p><a href="{{ current_path }}">..</a>/{{ term.slug }}/</p>
+<p><a href="{{ current_path }}..">..</a>/{{ term.slug }}/</p>
<h1>{{ term.name }}</h1>
{% endblock header %}