mirror of
https://github.com/offen/website.git
synced 2024-11-22 17:10:29 +01:00
57 lines
1.3 KiB
Python
57 lines
1.3 KiB
Python
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*- #
|
|
from __future__ import unicode_literals
|
|
import logging
|
|
|
|
# If your site is available via HTTPS, make sure SITEURL begins with https://
|
|
SITEURL = 'https://www.offen.dev'
|
|
RELATIVE_URLS = False
|
|
|
|
AUTHOR = 'offen'
|
|
SITENAME = 'offen'
|
|
SITEURL = ''
|
|
PATH = 'content'
|
|
TIMEZONE = 'Europe/Berlin'
|
|
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
|
|
|
|
# pagination
|
|
DEFAULT_PAGINATION = False
|
|
|
|
# Uncomment following line if you want document-relative URLs when developing
|
|
#RELATIVE_URLS = True
|
|
|
|
|
|
|
|
|
|
# added configs ----------------------------------------------
|
|
|
|
# THEME = '###'
|
|
|
|
# Delete the output directory before generating new files.
|
|
DELETE_OUTPUT_DIRECTORY = True
|
|
|
|
# List of templates that are used directly to render content.
|
|
# DIRECT_TEMPLATES = ['index','deepdive']
|
|
|
|
# dont create following standart pages
|
|
AUTHORS_SAVE_AS = None
|
|
ARCHIVES_SAVE_AS = None
|
|
CATEGORIES_SAVE_AS = None
|
|
TAGS_SAVE_AS = None
|
|
|
|
# The static paths you want to have accessible on the output path “static”.
|
|
STATIC_PATHS = ['css', 'img', 'fonts']
|
|
|
|
# The default metadata you want to use for all articles and pages.
|
|
DEFAULT_METADATA = {
|
|
'description': 'A brief description of your site',
|
|
'status': 'draft'
|
|
}
|