diff options
author | Bradley Taunt <bt@btxx.org> | 2024-01-19 13:19:41 -0500 |
---|---|---|
committer | Bradley Taunt <bt@btxx.org> | 2024-01-19 13:19:41 -0500 |
commit | 85f2c8d0d69ac0195bf6a20e396077dee0e9aefa (patch) | |
tree | 4f3bd878e20e7e057f91da6632a215b004d10c49 /_config.sh |
Initial commit for new cgit platform
Diffstat (limited to '_config.sh')
-rw-r--r-- | _config.sh | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/_config.sh b/_config.sh new file mode 100644 index 0000000..2558aa1 --- /dev/null +++ b/_config.sh @@ -0,0 +1,24 @@ +#!/bin/sh + +# Site specific settings +################################################################################### +DOMAIN="https://pblog.btxx.org" +TITLE="pblog" +DESCRIPTION="Pandoc static blog generator" +COPYRIGHT="Copyright 2022, Bradley Taunt" +AUTHOR="bt@btxx.org (Bradley Taunt)" +OS="Linux" # "Linux" for Linux, "BSD" for BSD Systems (including MacOS) +HTML_LANG="en_US" # Your document (HTML) language setting + +# Blog structure settings (most users should use these defaults) +################################################################################### +TOC=true +SYNTAX=true +PAGES_DIR="pages/" +POSTS_DIR="posts/" +PAGES=$(find $PAGES_DIR -type f) +POSTS=$(find $POSTS_DIR -type f) +WEB_HTML="blog/" +OUTPUT="_output/" +TIME="01:00:00 EST" +TTL="60" |