From e07c2cd420eddf8e169c9370b9bde32532727834 Mon Sep 17 00:00:00 2001 From: Denis 'GNUtoo' Carikli Date: Wed, 3 Jan 2024 00:24:46 +0100 Subject: 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 --- haunt.scm | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'haunt.scm') 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 . -(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"))) -- cgit v1.2.3