aboutsummaryrefslogtreecommitdiffstats
path: root/haunt.scm
diff options
context:
space:
mode:
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")))