diff options
Diffstat (limited to 'haunt.scm')
| -rw-r--r-- | haunt.scm | 9 |
1 files changed, 6 insertions, 3 deletions
@@ -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"))) |
