diff options
| author | Jakob L. Kreuze | 2023-03-30 20:22:58 -0400 |
|---|---|---|
| committer | Jakob L. Kreuze | 2023-04-10 07:25:53 -0400 |
| commit | 9bd53f58cfde8d73e9e9178b8c33325a1281c5d0 (patch) | |
| tree | 49e78cc578754c7db7daaa08c32b71399d7084af /haunt/jakob | |
| parent | f05f03e813086f18082db5a20ffeaadcfe7ff8dc (diff) | |
Fix tag url
Diffstat (limited to 'haunt/jakob')
| -rw-r--r-- | haunt/jakob/utils/tags.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/haunt/jakob/utils/tags.scm b/haunt/jakob/utils/tags.scm index 722d968..656f712 100644 --- a/haunt/jakob/utils/tags.scm +++ b/haunt/jakob/utils/tags.scm @@ -54,4 +54,4 @@ takes a single item as an argument and returns its tags." (define* (tag-uri prefix tag #:optional (extension ".html")) "Return a URI relative to the site's root for a page listing entries in PREFIX that are tagged with TAG." - (string-append prefix "/tag/" tag extension)) + (string-append prefix "/" tag extension)) |