2
0
mirror of https://github.com/offen/website.git synced 2024-10-18 20:20:24 +02:00
website/homepage/pelicanconf.py

47 lines
1.1 KiB
Python
Raw Normal View History

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://
RELATIVE_URLS = False
2019-05-21 09:41:23 +02:00
AUTHOR = 'offen'
2019-05-21 23:01:57 +02:00
SITENAME = 'offen'
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
THEME = './theme'
2019-05-24 09:17:16 +02:00
# Delete the output directory before generating new files.
DELETE_OUTPUT_DIRECTORY = True
PLUGIN_PATHS = ['./plugins']
PLUGINS = ['assets']
# 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
2019-08-29 22:21:00 +02:00
DIRECT_TEMPLATES = []
2019-07-26 12:05:08 +02:00
GITHUB_ORG = 'https://github.com/offen'
CONTACT_EMAIL = 'mail@offen.dev'
PATREON_URL = 'https://www.patreon.com/bePatron?u=21484999'
2019-09-04 16:20:35 +02:00
AUDITORIUM_SCRIPT = 'http://localhost:8080/auditorium/index.js'