aboutsummaryrefslogtreecommitdiffstats
path: root/haunt.scm
diff options
context:
space:
mode:
authorDenis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>2024-01-03 00:24:46 +0100
committerDenis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>2024-01-09 21:27:23 +0100
commite07c2cd420eddf8e169c9370b9bde32532727834 (patch)
tree0c36a483009452073bed113341d6e86003e2debc /haunt.scm
parent24ba2134fae77c76af8ab5880e1b21b519ed5941 (diff)
downloadhaunt-blog-e07c2cd420eddf8e169c9370b9bde32532727834.tar.gz
haunt-blog-e07c2cd420eddf8e169c9370b9bde32532727834.tar.bz2
haunt-blog-e07c2cd420eddf8e169c9370b9bde32532727834.zip
Start adding top bar.
The twentyeleven-style-20231107.css file was downloaded from the blog.replicant.us web page. As for website/builders/replicant-blog.scm, it is based on work I made for GNU Boot. Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
Diffstat (limited to 'haunt.scm')
-rw-r--r--haunt.scm9
1 files changed, 6 insertions, 3 deletions
diff --git a/haunt.scm b/haunt.scm
index 9577759..07e4f5a 100644
--- a/haunt.scm
+++ b/haunt.scm
@@ -13,9 +13,11 @@
;;; 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)
+(use-modules (haunt builder assets)
+ (haunt builder blog)
(haunt site)
- (haunt reader commonmark))
+ (haunt reader commonmark)
+ (website builders replicant-blog))
(site #:title "Replicant"
#:domain "blog.replicant.us"
@@ -24,4 +26,5 @@
;; #:file-filter untitled-file-filter
#:posts-directory "markdown"
#:readers (list commonmark-reader)
- #:builders (list (blog)))
+ #:builders (list (replicant-blog-website)
+ (static-directory "static")))