aboutsummaryrefslogtreecommitdiffstats
path: root/haunt.scm
diff options
context:
space:
mode:
authorDenis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>2023-12-26 16:01:56 +0100
committerDenis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>2023-12-31 13:11:42 +0100
commitdac22e627f3c716201556537849743387464c73d (patch)
treea79c1eaeadc0697f72075a2f88a0ab6188bd90cf /haunt.scm
downloadhaunt-blog-dac22e627f3c716201556537849743387464c73d.tar.gz
haunt-blog-dac22e627f3c716201556537849743387464c73d.tar.bz2
haunt-blog-dac22e627f3c716201556537849743387464c73d.zip
Initial import
Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
Diffstat (limited to 'haunt.scm')
-rw-r--r--haunt.scm27
1 files changed, 27 insertions, 0 deletions
diff --git a/haunt.scm b/haunt.scm
new file mode 100644
index 0000000..9577759
--- /dev/null
+++ b/haunt.scm
@@ -0,0 +1,27 @@
+;;; Copyright © 2023 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 blog)
+ (haunt site)
+ (haunt reader commonmark))
+
+(site #:title "Replicant"
+ #:domain "blog.replicant.us"
+ #:default-metadata
+ '((author . "Replicant contributors"))
+;; #:file-filter untitled-file-filter
+ #:posts-directory "markdown"
+ #:readers (list commonmark-reader)
+ #:builders (list (blog)))