summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorJohannes Herman <johannes.herman@gmail.com>2026-03-16 11:14:21 +0100
committerJohannes Herman <johannes.herman@gmail.com>2026-03-16 11:14:21 +0100
commitcaa30dd45d3ae76405a7f4ecc9641521c1fb8895 (patch)
tree5641956935e8ef6cb487d47456b884443e5118e8 /config
initial
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"
+