diff options
author | Arun Isaac | 2025-03-25 19:00:45 +0000 |
---|---|---|
committer | Arun Isaac | 2025-03-26 02:12:01 +0000 |
commit | 7cfbc075ad88488e3e18a4443bb16cf50dd7e677 (patch) | |
tree | 308cf207c3191291b8550b1b872b84047f1ab4d6 /doc | |
parent | bcb3e2353b9f6b5ac7bc89d639e630c12049fc42 (diff) | |
download | guix-forge-7cfbc075ad88488e3e18a4443bb16cf50dd7e677.tar.gz guix-forge-7cfbc075ad88488e3e18a4443bb16cf50dd7e677.tar.lz guix-forge-7cfbc075ad88488e3e18a4443bb16cf50dd7e677.zip |
tissue.scm: Prepend /guix-forge to web URI paths.
* tissue.scm (#:indexed-documents): Prepend /guix-forge to web-uri.
* doc/skribilo.scm (html-engine): Prepend /guix-forge to CSS path.
* website/index.skb (Documentation): Prepend /guix-forge to manual
path.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/skribilo.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/skribilo.scm b/doc/skribilo.scm index 972b626..7c75d97 100644 --- a/doc/skribilo.scm +++ b/doc/skribilo.scm @@ -1,5 +1,5 @@ ;;; guix-forge --- Guix software forge meta-service -;;; Copyright © 2022–2023 Arun Isaac <arunisaac@systemreboot.net> +;;; Copyright © 2022–2023, 2025 Arun Isaac <arunisaac@systemreboot.net> ;;; ;;; This file is part of guix-forge. ;;; @@ -364,7 +364,7 @@ are a list of <record-field> objects." ;; HTML engine customizations (let ((html-engine (find-engine 'html))) - (engine-custom-set! html-engine 'css "/style.css") + (engine-custom-set! html-engine 'css "/guix-forge/style.css") (engine-custom-set! html-engine 'charset "UTF-8") (markup-writer 'abbr html-engine #:options '(#:short #:long) |