Commita0fcc345Recorded30 Jun 2026Repositorypress
Footer: credit Sigil Press with a link to the repo
Message
Both the theme footer and the docs footer now read 'Built with Sigil Press' and link to https://codeberg.org/sigil/press, replacing the old 'Built with Sigil' / 'Generated by sigil docs' text.
Changed
package.sgl | 2 +-
src/press/docs.sgl | 2 +-
src/press/theme.sgl | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)Diff
package.sglmodified
@@ -7,7 +7,7 @@
7
8
(package 9
name: "press"−10
version: "0.1.0"+10
version: "0.1.1" 11
description: "Static site generator built on Sigil" 12
url: "https://codeberg.org/sigil/press" 13
license: "BSD-3-Clause"src/press/docs.sglmodified
@@ -127,7 +127,7 @@
127
(main (@ (class "content")) 128
(article ,@(if (pair? body) body (list body)))) 129
(footer−130
(p "Generated by " (code "sigil docs"))))))))+130
(p "Built with " (a (@ (href "https://codeberg.org/sigil/press")) "Sigil Press")))))))) 131
132
;; Convert output path to URL format 133
;; /index.html -> /src/press/theme.sglmodified
@@ -65,7 +65,7 @@
65
,@body-sxml))) 66
(footer (@ (class "site-footer")) 67
(div (@ (class "container"))−68
(p "Built with Sigil")))))))+68
(p "Built with " (a (@ (href "https://codeberg.org/sigil/press")) "Sigil Press")))))))) 69
70
;; ============================================================ 71
;; Navigation Rendering