Compare commits
2 commits
9e449ea5b6
...
5b7d05eefe
Author | SHA1 | Date | |
---|---|---|---|
5b7d05eefe | |||
da41ed9ec9 |
3 changed files with 28 additions and 0 deletions
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
/site
|
||||||
|
'
|
18
haunt.scm
Normal file
18
haunt.scm
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
(use-modules (haunt asset)
|
||||||
|
(haunt site)
|
||||||
|
(haunt builder blog)
|
||||||
|
(haunt builder atom)
|
||||||
|
(haunt reader)
|
||||||
|
;;(haunt reader skribe)
|
||||||
|
(haunt reader commonmark))
|
||||||
|
|
||||||
|
|
||||||
|
(site #:title "lopsite"
|
||||||
|
#:domain "loplkc.neocities.com"
|
||||||
|
#:default-metadata
|
||||||
|
'((author . "loplkc")
|
||||||
|
(email . "loplkc@loplkc.loplkc"))
|
||||||
|
#:readers (list commonmark-reader)
|
||||||
|
#:builders (list (blog)
|
||||||
|
(atom-feed)
|
||||||
|
(atom-feeds-by-tag)))
|
8
posts/hello.md
Normal file
8
posts/hello.md
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
title: First post!
|
||||||
|
date: 2018-03-13 18:00
|
||||||
|
tags: hello
|
||||||
|
summary: hello!
|
||||||
|
---
|
||||||
|
|
||||||
|
Hello, world!
|
||||||
|
|
Loading…
Reference in a new issue