2019-05-21 09:41:23 +02:00
|
|
|
#!/usr/bin/env python
|
|
|
|
# -*- coding: utf-8 -*- #
|
|
|
|
from __future__ import unicode_literals
|
2019-05-24 09:17:16 +02:00
|
|
|
import logging
|
2019-05-21 09:41:23 +02:00
|
|
|
|
2019-05-26 21:59:05 +02:00
|
|
|
# If your site is available via HTTPS, make sure SITEURL begins with https://
|
2019-05-31 17:35:31 +02:00
|
|
|
#SITEURL = 'https://www.offen.dev'
|
2019-05-26 21:59:05 +02:00
|
|
|
RELATIVE_URLS = False
|
|
|
|
|
2019-05-21 09:41:23 +02:00
|
|
|
AUTHOR = 'offen'
|
2019-05-21 23:01:57 +02:00
|
|
|
SITENAME = 'offen'
|
2019-06-01 14:07:43 +02:00
|
|
|
SITEURL = 'https://www.offen.dev'
|
2019-05-21 09:41:23 +02:00
|
|
|
PATH = 'content'
|
2019-05-21 23:01:57 +02:00
|
|
|
TIMEZONE = 'Europe/Berlin'
|
2019-05-21 09:41:23 +02:00
|
|
|
DEFAULT_LANG = 'en'
|
|
|
|
|
|
|
|
# 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
|
|
|
|
|
2019-05-21 23:01:57 +02:00
|
|
|
# pagination
|
2019-05-21 09:41:23 +02:00
|
|
|
DEFAULT_PAGINATION = False
|
|
|
|
|
2019-05-24 09:17:16 +02:00
|
|
|
|
2019-05-31 16:50:23 +02:00
|
|
|
THEME = './theme'
|
2019-05-24 09:17:16 +02:00
|
|
|
|
|
|
|
# Delete the output directory before generating new files.
|
|
|
|
DELETE_OUTPUT_DIRECTORY = True
|
|
|
|
|
2019-05-31 16:50:23 +02:00
|
|
|
# dont create following standard pages
|
2019-05-24 10:24:40 +02:00
|
|
|
AUTHORS_SAVE_AS = None
|
|
|
|
ARCHIVES_SAVE_AS = None
|
|
|
|
CATEGORIES_SAVE_AS = None
|
|
|
|
TAGS_SAVE_AS = None
|
2019-05-24 09:17:16 +02:00
|
|
|
|
2019-06-01 14:07:43 +02:00
|
|
|
# keep this for access to page variable
|
|
|
|
DIRECT_TEMPLATES = []
|
2019-07-16 15:41:47 +02:00
|
|
|
|
|
|
|
OFFEN_ACCOUNT_ID = None
|