30 lines
610 B
Markdown
30 lines
610 B
Markdown
title: First post!
|
|
date: 2024-02-06 11:08
|
|
tags: hello
|
|
summary: hello
|
|
---
|
|
|
|
# Title
|
|
|
|
## Hello world!
|
|
|
|
This is **MarkDown** :-)
|
|
|
|
This is *code*
|
|
|
|
`
|
|
(use-modules (haunt asset)
|
|
(haunt site)
|
|
(haunt builder blog)
|
|
(haunt builder atom)
|
|
(haunt reader skribe))
|
|
(site #:title 'My First Haunt Site'
|
|
#:domain "example.com"
|
|
#:default-metadata
|
|
'((author . "Eva Luator")
|
|
(email . "eva@example.com"))
|
|
#:readers (list skribe-reader)
|
|
#:builders (list (blog)
|
|
(atom-feed)
|
|
(atom-feeds-by-tag)))`
|