blog/settings.py
Marc Beninca 167d264494 settings
2022-03-13 18:35:06 +01:00

26 lines
400 B
Python

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'),
)