18 lines
676 B
Scheme
18 lines
676 B
Scheme
;;; site/meta.scm
|
|
|
|
(import "util.scm")
|
|
|
|
(define title "~snit/meta/")
|
|
|
|
|
|
`(,@(import "header.scm")
|
|
(p "The purpose of this one is threefold; it contains:")
|
|
(ul (li "content about this Gemini capsule (~snit)")
|
|
(li "nonessential information regarding isekai.rocks and its associated services")
|
|
(li "writing about me as a person (as opposed to just my opinions) for whatever reason"))
|
|
(p)
|
|
(p "There's a good chance those first two will also be found in ~snit/comp/, as well.")
|
|
(p)
|
|
(a ,(make-relative-uri 'suffix "links") "Link Garden")
|
|
(a ,(make-relative-uri 'suffix "27x81") "27x81 Banners")
|
|
(a ,(make-relative-uri 'suffix "post-ideas") "Post Ideas"))
|