blob: 3c0db58a8a825fc8189a336825e652ff01f5cbed (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
;;; Copyright © 2023-2024 Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
;;;
;;; This file is free software; you can redistribute it and/or modify
;;; it under the terms of the GNU General Public License as published
;;; by the Free Software Foundation; either version 3 of the License,
;;; or (at your option) any later version.
;;;
;;; Haunt is distributed in the hope that it will be useful, but
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
;;; General Public License for more details.
;;;
;;; You should have received a copy of the GNU General Public License
;;; along with this file. If not, see <http://www.gnu.org/licenses/>.
(use-modules (haunt builder assets)
(haunt builder atom)
(haunt builder blog)
(haunt builder redirects)
(haunt builder rss)
(haunt site)
(modules readers wordpress-markdown)
(modules builders replicant-blog)
(modules builders replicant-blog-search)
(modules builders wordpress-compatible-links))
(fluid-set! %default-port-encoding "UTF-8")
(site #:title "Replicant"
#:domain "blog.test.replicant.us"
#:default-metadata
'((author . "Replicant contributors"))
#:posts-directory "posts"
#:readers (list wordpress-markdown-reader)
#:builders (list (replicant-blog-website)
replicant-blog-search-page
(static-directory "static")
;;;;;;;;;;;
;; Feeds ;;
;;;;;;;;;;;
(atom-feed)
(atom-feeds-by-tag)
(rss-feed)
;;;;;;;;;;;;;;;
;; Redirects ;;
;;;;;;;;;;;;;;;
(make-wordpress-compatible-links "links.txt")))
|