From 167d26449435e252a0b9ecc47c2d0fc72940e00f Mon Sep 17 00:00:00 2001 From: Marc Beninca Date: Sun, 13 Mar 2022 18:35:06 +0100 Subject: [PATCH] settings --- settings.py | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 settings.py diff --git a/settings.py b/settings.py new file mode 100644 index 0000000..5ade778 --- /dev/null +++ b/settings.py @@ -0,0 +1,26 @@ +SITEURL = '' +DEFAULT_LANG = 'en' +SITENAME = 'rwx.work' +AUTHOR = 'mspe' +TIMEZONE = 'UTC' +DEFAULT_METADATA = { + 'status': 'draft', +} + +THEME = 'themes/pelican-twitchy' + +DELETE_OUTPUT_DIRECTORY = True +OUTPUT_PATH = 'out' + +OUTPUT_SOURCES = True +RELATIVE_URLS = True + +LINKS = () +('Link #1', 'https://1'), +('Link #2', 'https://2'), +) + +SOCIAL = ( +('Social #1', 'https://1'), +('Social #2', 'https://2'), +)