summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
Diffstat (limited to 'config')
-rwxr-xr-xconfig23
1 files changed, 23 insertions, 0 deletions
diff --git a/config b/config
new file mode 100755
index 0000000..07a5ed7
--- /dev/null
+++ b/config
@@ -0,0 +1,23 @@
+#!/bin/sh -eu
+
+TITLE=JHHM
+
+BIN_DIR=bin
+DIR_CONTENT=content
+DIR_STATIC=static
+DIR_BUILD=public
+DIR_TEMP=templates
+
+DIR_WRITINGS="$DIR_CONTENT"/writings
+DIR_WRITINGS_DST="$DIR_BUILD"/writings
+
+TEMP_PAGE="$DIR_TEMP"/page.html
+TEMP_HEAD="$DIR_TEMP"/header.html
+TEMP_FOOT="$DIR_TEMP"/footer.html
+
+STYLESHEET="$DIR_STATIC"/style.css
+
+EXT_WRITINGS="md"
+
+export PATH="$PWD/bin:$PATH"
+