guix-artwork/website/haunt.scm

28 lines
966 B
Scheme
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

;;; GNU Guix web site
;;; Initially written by sirgazil who waives all
;;; copyright interest on this file.
(use-modules ((apps base builder) #:prefix base:)
((apps blog builder) #:prefix blog:)
((apps download builder) #:prefix download:)
(apps i18n)
((apps media builder) #:prefix media:)
(haunt asset)
(haunt builder assets)
(haunt reader)
(haunt reader commonmark)
(haunt site)
(ice-9 rdelim)
(srfi srfi-1))
(site #:title "GNU Guix"
#:domain "https://guix.gnu.org"
#:build-directory "/tmp/gnu.org/software/guix"
#:readers (list sxml-reader html-reader commonmark-reader)
#:builders (builders->localized-builders
(list base:builder
blog:builder
download:builder
media:builder
(static-directory "static"))))