port from an SSI-based setup to one using GNU M4
[~bandali/bndl.org] / haunt.scm
diff --git a/haunt.scm b/haunt.scm
deleted file mode 100644 (file)
index 414ef08..0000000
--- a/haunt.scm
+++ /dev/null
@@ -1,54 +0,0 @@
-;;; Copyright © 2019 Amin Bandali <bandali@gnu.org>
-;;;
-;;; This program 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.
-;;;
-;;; This program 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 program. If not, see
-;;; <http://www.gnu.org/licenses/>.
-
-(use-modules (bandali feeds)
-             (bandali pages)
-             (bandali prefs)
-             (bandali tags)
-             (bandali theme)
-             (haunt builder blog)
-             (haunt builder assets)
-             (haunt post)
-             (haunt reader commonmark)
-             (haunt site))
-
-(site #:title "Amin Bandali"
-      #:scheme my-scheme                ; requires haunt-next
-      #:domain my-domain
-      #:default-metadata
-      '((author . "Amin Bandali")
-        (email  . "bandali@gnu.org")
-        (domain . my-domain))
-      #:readers (list commonmark-reader)
-      #:builders (list (blog #:theme bandali-theme
-                             #:collections
-                             `(("Notes" "notes.html"
-                                ,posts/reverse-chronological)))
-                       (tag-pages)
-                       index-page
-                       (atom-feed
-                        #:file-name "notes.atom")
-                       (atom-feeds-by-tag
-                        #:prefix my-tag-prefix)
-                       (rss-feed
-                        #:file-name "notes.rss")
-                       (rss-feeds-by-tag
-                        #:prefix my-tag-prefix)
-                       contact-page
-                       cv-page
-                       license-page
-                       se212-f19-page
-                       (static-directory "static" "")))