From 322d37ce48d52c3d0c3475a893b3507fc767bf69 Mon Sep 17 00:00:00 2001 From: trotFunky Date: Thu, 1 Aug 2024 22:43:25 +0100 Subject: [PATCH] templates: Remove the extra / in the anchor link Anchor links do not need an additional / to work : the # can be added directly at the end of the previous URL. Remove it from the existing anchor tags in the truths. --- templates/tags/filtered_truths.html.tera | 2 +- templates/weeks/truth.html.tera | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/tags/filtered_truths.html.tera b/templates/tags/filtered_truths.html.tera index ad2ffb9..cb94d54 100644 --- a/templates/tags/filtered_truths.html.tera +++ b/templates/tags/filtered_truths.html.tera @@ -21,7 +21,7 @@ {% for truth in truths %}
-

Semaine {{ truth.week }} - Vérité {{ truth.number }}

+

Semaine {{ truth.week }} - Vérité {{ truth.number }}

{{ truth.rendered_text | safe }}

{% endfor %} diff --git a/templates/weeks/truth.html.tera b/templates/weeks/truth.html.tera index 5a420e6..5eaa580 100644 --- a/templates/weeks/truth.html.tera +++ b/templates/weeks/truth.html.tera @@ -5,7 +5,7 @@ {%- endif -%}
-

Vérité {{ truth.number }}

+

Vérité {{ truth.number }}

{{ truth.rendered_text | safe }}