PELICAN = '/data/software/pelican' PLUGIN_PATHS = [f'{PELICAN}/plugins'] THEMES = f'{PELICAN}/themes' PLUGINS = ['i18n_subsites'] THEME = f'{THEMES}/pelican-twitchy' SITEURL = '' DEFAULT_DATE_FORMAT = '%Y / %m / %d' DEFAULT_LANG = 'en' I18N_SUBSITES = { 'fr': { }, } SITENAME = 'rwx.work' AUTHOR = 'mspe' TIMEZONE = 'UTC' DEFAULT_METADATA = { 'status': 'draft', } PATH = 'in' 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'), )