20 lines
504 B
Bash
20 lines
504 B
Bash
#!/usr/bin/env sh
|
|
|
|
# Site specific settings
|
|
DOMAIN="https://iiogama.0x212.com"
|
|
TITLE="iiogama@0x212.com"
|
|
DESCRIPTION="Thai Noodles makes things"
|
|
COPYRIGHT="Copyright $(date +%Y), Thai Noodles"
|
|
AUTHOR="iiogama@0x212.com, (Thai Noodles)"
|
|
HTML_LANG="en_US" # Your document (HTML) language setting
|
|
|
|
# Blog structure settings (most users should use these defaults)
|
|
TOC=false
|
|
SYNTAX=true
|
|
CONTENT_DIR="content/"
|
|
BLOG_DIR="blog/"
|
|
PAGES=$(find $CONTENT_DIR -type f)
|
|
OUTPUT="_output/"
|
|
TIME="01:00:00 PST"
|
|
TTL="60"
|