blog/_config.sh

22 lines
670 B
Bash
Raw Permalink 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"
OS="Linux" # "Linux" for Linux, "BSD" for BSD Systems (including MacOS)
2022-09-13 11:01:24 +00:00
HTML_LANG="en-US" # Your document (HTML) language setting
2022-07-29 14:27:37 +00:00
# Blog structure settings (most users should use these defaults)
###################################################################################
TOC=true
SYNTAX=true
POSTS_DIR="posts/"
2022-09-09 14:03:56 +00:00
POSTS=$(find $POSTS_DIR -type f)
2022-07-29 14:27:37 +00:00
WEB_HTML="blog/"
OUTPUT="_output/"
2022-09-09 14:03:56 +00:00
TIME=$(date -u +"%T %z")
2022-07-29 14:27:37 +00:00
TTL="60"