25 lines
1.1 KiB
Scheme
25 lines
1.1 KiB
Scheme
;;; site/index.scm
|
|
|
|
(import "util.scm")
|
|
|
|
(define title "~snit")
|
|
|
|
`(,@(import "header.scm")
|
|
(p "Hello, I am ~snit, an avid enjoyer of all things isekai, as well as the administrator of isekai.rocks. This capsule is my own personal space to talk about isekai (or other weeb media), technology, privacy/security, linguistics, and other esoteric topics.")
|
|
(p)
|
|
(h2 "Topics")
|
|
(p "Fair warning that there's not much here at the moment; some of these sections have nothing interesting.")
|
|
,@(map (lambda (name)
|
|
`(a ,(make-relative-uri 'suffix "." name)
|
|
,(join-path 'suffix "~" name)))
|
|
'("comp" "lang" "meta" "weeb"))
|
|
(p)
|
|
(h2 "Meta")
|
|
(p "All original content in this capsule is licensed under the following terms:")
|
|
(a ,(make-relative-uri 'suffix "LICENSE") "License")
|
|
(p)
|
|
(p "The source for the capsule can be found here:")
|
|
(a ,(build-uri 'https #:host "forge.fsky.io" #:path "/snit/gemini.git"))
|
|
(p)
|
|
(p "For questions, comments, concerns, or just to chat, you can contact me here:")
|
|
(a ,(make-relative-uri 'suffix "contact") "Contact"))
|