mirror of
https://github.com/offen/website.git
synced 2024-11-22 17:10:29 +01:00
50 lines
1.2 KiB
Python
50 lines
1.2 KiB
Python
from datetime import datetime
|
|
from calendar import month_name
|
|
# If your site is available via HTTPS, make sure SITEURL begins with https://
|
|
RELATIVE_URLS = False
|
|
|
|
AUTHOR = 'offen'
|
|
SITENAME = 'offen'
|
|
PATH = 'content'
|
|
TIMEZONE = 'Europe/Berlin'
|
|
DEFAULT_LANG = 'en'
|
|
|
|
BUILD_DATE = '{} {}'.format(month_name[datetime.today().month], datetime.today().year)
|
|
|
|
# Feed generation is usually not desired when developing
|
|
FEED_ALL_ATOM = None
|
|
CATEGORY_FEED_ATOM = None
|
|
TRANSLATION_FEED_ATOM = None
|
|
AUTHOR_FEED_ATOM = None
|
|
AUTHOR_FEED_RSS = None
|
|
|
|
# pagination
|
|
DEFAULT_PAGINATION = False
|
|
|
|
THEME = './theme'
|
|
|
|
# Delete the output directory before generating new files.
|
|
DELETE_OUTPUT_DIRECTORY = True
|
|
|
|
# dont create following standard pages
|
|
AUTHORS_SAVE_AS = None
|
|
ARCHIVES_SAVE_AS = None
|
|
CATEGORIES_SAVE_AS = None
|
|
TAGS_SAVE_AS = None
|
|
|
|
# keep this for access to page variable
|
|
DIRECT_TEMPLATES = []
|
|
|
|
PLUGIN_PATHS = ['./plugins']
|
|
PLUGINS = ['assets']
|
|
|
|
|
|
GITHUB_ORG = 'https://github.com/offen'
|
|
CONTACT_EMAIL = 'hioffen@posteo.de'
|
|
GPG_KEY_FILE = '74B041E23DB29D552644CEB1B18C633D6967FE3F.asc'
|
|
PATREON_URL = 'https://www.patreon.com/offen'
|
|
LINKEDIN_URL = 'https://www.linkedin.com/company/hioffen'
|
|
TWITTER_URL = 'https://twitter.com/hioffen'
|
|
|
|
OFFEN_ACCOUNT_ID = '9b63c4d8-65c0-438c-9d30-cc4b01173393'
|