blog/settings.py

27 lines
400 B
Python
Raw Normal View History

2022-03-13 17:35:06 +00:00
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'),
)