blog/_config.sh

25 lines
760 B
Bash
Raw Normal View History

2022-07-29 14:27:37 +00:00
#!/bin/sh
# Site specific settings
###################################################################################
DOMAIN="https://pblog.xyz"
TITLE="pblog.xyz"
DESCRIPTION="Pandoc static blog generator"
COPYRIGHT="Copyright 2022, Bradley Taunt"
AUTHOR="hello@tdarb.org (Bradley Taunt)"
2022-07-29 14:46:26 +00:00
OS="BSD" # "Linux" for Linux, "BSD" for BSD Systems (including MacOS)
2022-07-29 14:27:37 +00:00
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=$(date +"%T %Z")
TTL="60"