summary refs log tree commit diff stats
path: root/boudin.config.scm
diff options
context:
space:
mode:
Diffstat (limited to 'boudin.config.scm')
-rw-r--r--boudin.config.scm22
1 files changed, 22 insertions, 0 deletions
diff --git a/boudin.config.scm b/boudin.config.scm new file mode 100644 index 0000000..2cc5892 --- /dev/null +++ b/boudin.config.scm
@@ -0,0 +1,22 @@
1(module (boudin config) ()
2 (import scheme (chicken module))
3 (reexport (except (boudin site)
4 site-build-time)
5 (boudin util)
6 (only (boudin page style)
7 style-template
8 site-style
9 style-writer)
10 (only (boudin page post)
11 post-text-transformers
12 post-path-transformers
13 post-template
14 post-writer)
15 (only (boudin page write)
16 html-head) ; TODO: move to boudin.page
17 (only (boudin page index)
18 index-content
19 index-writer
20 index-template
21 feed-writer
22 feed-template)))