blog/settings.py

42 lines
621 B
Python
Raw Normal View History

2022-03-17 23:02:33 +00:00
PELICAN = '/data/software/pelican'
PLUGIN_PATHS = [f'{PELICAN}/plugins']
THEMES = f'{PELICAN}/themes'
PLUGINS = ['i18n_subsites']
THEME = f'{THEMES}/pelican-twitchy'
2022-03-13 17:35:06 +00:00
SITEURL = ''
2022-03-17 23:02:33 +00:00
2022-03-17 23:18:38 +00:00
DEFAULT_DATE_FORMAT = '%Y / %m / %d'
2022-03-13 17:35:06 +00:00
DEFAULT_LANG = 'en'
2022-03-17 23:02:33 +00:00
I18N_SUBSITES = {
'fr': {
},
}
2022-03-13 17:35:06 +00:00
SITENAME = 'rwx.work'
AUTHOR = 'mspe'
TIMEZONE = 'UTC'
DEFAULT_METADATA = {
'status': 'draft',
}
2022-03-13 18:01:14 +00:00
PATH = 'in'
2022-03-13 17:35:06 +00:00
DELETE_OUTPUT_DIRECTORY = True
OUTPUT_PATH = 'out'
OUTPUT_SOURCES = True
RELATIVE_URLS = True
2022-03-13 18:55:23 +00:00
LINKS = (
2022-03-13 17:35:06 +00:00
('Link #1', 'https://1'),
('Link #2', 'https://2'),
)
SOCIAL = (
('Social #1', 'https://1'),
('Social #2', 'https://2'),
)