diff options
| author | Johannes Herman <johannes.herman@gmail.com> | 2026-03-16 11:14:21 +0100 |
|---|---|---|
| committer | Johannes Herman <johannes.herman@gmail.com> | 2026-03-16 11:14:21 +0100 |
| commit | caa30dd45d3ae76405a7f4ecc9641521c1fb8895 (patch) | |
| tree | 5641956935e8ef6cb487d47456b884443e5118e8 /config | |
initial
Diffstat (limited to 'config')
| -rwxr-xr-x | config | 23 |
1 files changed, 23 insertions, 0 deletions
@@ -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" + |
