;;; Copyright © 2019 Amin Bandali ;;; ;;; 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 ;;; . (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" "")))