From a643f9a12779494ed35813b7906229728cf282e2 Mon Sep 17 00:00:00 2001 From: Christopher Baines Date: Mon, 28 Oct 2019 17:23:23 +0000 Subject: Initial commit --- .gitignore | 1 + haunt.scm | 17 +++++++++++++++++ posts/hello.md | 7 +++++++ 3 files changed, 25 insertions(+) create mode 100644 .gitignore create mode 100644 haunt.scm create mode 100644 posts/hello.md diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..1320f90 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +site diff --git a/haunt.scm b/haunt.scm new file mode 100644 index 0000000..a945372 --- /dev/null +++ b/haunt.scm @@ -0,0 +1,17 @@ +(use-modules (haunt asset) + (haunt builder blog) + (haunt builder atom) + (haunt builder assets) + (haunt reader commonmark) + (haunt site)) + +(site #:title "Built with Guile" + #:domain "example.com" + #:default-metadata + '((author . "Eva Luator") + (email . "eva@example.com")) + #:readers (list commonmark-reader) + #:builders (list (blog) + (atom-feed) + (atom-feeds-by-tag) + (static-directory "images"))) diff --git a/posts/hello.md b/posts/hello.md new file mode 100644 index 0000000..99805ac --- /dev/null +++ b/posts/hello.md @@ -0,0 +1,7 @@ +title: First post! +date: 2018-03-13 18:00 +tags: hello +summary: hello! +--- + +Hello, world! -- cgit v1.2.3