From d2d31dfbae804b0b2485ba9b35105ab162cdc514 Mon Sep 17 00:00:00 2001 From: Jeffrey Phillips Freeman <the@jeffreyfreeman.me> Date: Mon, 9 Oct 2023 17:05:00 -0400 Subject: [PATCH] Fixed the url to tags --- layouts/index.activity_outbox.ajson | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/layouts/index.activity_outbox.ajson b/layouts/index.activity_outbox.ajson index b4c030852..c4a68f92d 100644 --- a/layouts/index.activity_outbox.ajson +++ b/layouts/index.activity_outbox.ajson @@ -39,7 +39,7 @@ {{- if ne $indexTags 0 }}, {{ end }} { "type": "Hashtag", - "href": "https://qoto.org/tags/{{ $elementTag }}", + "href": "{{ site.BaseURL | safeHTML }}tags/{{ $elementTag | lower }}", "name": "#{{ $elementTag }}" } {{- end }} @@ -50,7 +50,7 @@ {{- if (or (ne $indexTags 0) $hasTagContent) }}, {{ end }} { "type": "Hashtag", - "href": "https://qoto.org/tags/{{ $elementTag }}", + "href": "{{ site.BaseURL | safeHTML }}tags/{{ $elementTag | lower }}", "name": "#{{ $elementTag }}" } {{- end }} -- GitLab