verso.conf (807B)
1 # web.conf - Configuration for verso_2 2 3 # Site metadata 4 SITE_TITLE="Chappelle.dev" 5 SITE_URL="https://chappelle.dev" 6 SITE_DESCRIPTION="A simple website" 7 AUTHOR="Nathaniel Chappelle" 8 SITE_AUTHOR_EMAIL="nathaniel@chappelle.dev" 9 AUTHOR_GIT_HOST="https://git.chappelle.dev" 10 11 # Paths 12 INPUT_DIR="content" 13 OUTPUT_DIR="dist" 14 TEMPLATE_DIR="templates" 15 16 # Markdown processor (lowdown, cmark, markdown, discount, etc.) 17 MD_PROCESSOR="lowdown" 18 MD_FLAGS="-thtml --html-no-skiphtml --html-no-escapehtml" 19 20 # File handling 21 COPY_EXTENSIONS="jpg jpeg png gif svg pdf css js ico webp woff woff2 ttf" 22 IGNORE_PATTERNS="^\. .*\.swp$ .*~$" 23 24 # Features 25 GENERATE_RSS="yes" 26 GENERATE_SITEMAP="yes" 27 CLEAN_URLS="yes" # page.md -> page/index.html 28 29 # Date format 30 DATE_FORMAT="%Y-%m-%d" 31 32 # Blog settings 33 BLOG_DIR="blog/" 34 POSTS_PER_PAGE="10"