From 85f2c8d0d69ac0195bf6a20e396077dee0e9aefa Mon Sep 17 00:00:00 2001 From: Bradley Taunt Date: Fri, 19 Jan 2024 13:19:41 -0500 Subject: Initial commit for new cgit platform --- _config.sh | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 _config.sh (limited to '_config.sh') 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" -- cgit v1.2.3-54-g00ecf