blog/_config.sh

23 lines
711 B
Bash
Raw Normal View History

2022-07-29 14:27:37 +00:00
#!/bin/sh
# Site specific settings
###################################################################################
2022-09-09 12:04:18 +00:00
DOMAIN="https://vern.cc"
TITLE="Blog | ~vern"
DESCRIPTION="The blog of ~vern"
COPYRIGHT="Copyright 2022, ~vern administrators"
AUTHOR="root@vern.cc (~vern administrators)"
OS="Linux" # "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
POSTS_DIR="posts/"
POSTS=$(find $POSTS_DIR -type f)
WEB_HTML="blog/"
OUTPUT="_output/"
TIME=$(date +"%T %Z")
TTL="60"