adjust default path and add a comment about absolute paths - static-site-script… | |
git clone git://git.codemadness.org/static-site-scripts | |
Log | |
Files | |
Refs | |
README | |
LICENSE | |
--- | |
commit a0a8c42c986799bde6db7d3800b02d79f4414c89 | |
parent e249829a851b58876124433b43c72c02b8ca81df | |
Author: Hiltjo Posthuma <[email protected]> | |
Date: Sun, 15 Dec 2013 20:39:02 +0100 | |
adjust default path and add a comment about absolute paths | |
Signed-off-by: Hiltjo Posthuma <[email protected]> | |
Diffstat: | |
M site.conf | 7 ++++--- | |
1 file changed, 4 insertions(+), 3 deletions(-) | |
--- | |
diff --git a/site.conf b/site.conf | |
@@ -16,11 +16,12 @@ sitedescription="blog with various projects and articles ab… | |
sitemail="hiltjo@[email protected]" | |
# Directories containing content and metadata. | |
-pagesdir="pages" | |
+# NOTE: it's recommended to use absolute paths here. | |
+pagesdir="site/pages" | |
# Output dir. | |
-outputdir="output" | |
+outputdir="site/output" | |
# Layout dir. | |
-layoutdir="layout" | |
+layoutdir="site/layout" | |
# TODO: markdown program: http://freecode.com/projects/smu | |
markdown="smu" |