#!/usr/bin/env python # -*- coding: utf-8 -*- # from __future__ import unicode_literals AUTHOR = u'Dominik George' SITENAME = u'Dominik George' SITESUBTITLE = u'Free Software Fellow, Education Enthusiast, sozialliberal' SITEURL = '' PATH = 'content' STATIC_PATHS = ['static'] THEME = 'theme' TIMEZONE = 'Europe/Berlin' DEFAULT_LANG = u'de' # 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 MENUITEMS = (('Blog', 'blog.html'),) # Blogroll LINKS = (('Pelican', 'http://getpelican.com/'), ('Python.org', 'http://python.org/'), ('Jinja2', 'http://jinja.pocoo.org/'), ('You can modify those links in your config file', '#'),) # Social widget SOCIAL = (('XMPP / Jabber', 'xmpp:nik@mercurius.teckids.org'), ('Movim-Microblog', 'https://commu.teckids.org/movim/?blog/nik%40mercurius.teckids.org'), ('Twitter', 'https://www.twitter.com/Natureshadow'),) DEFAULT_PAGINATION = 10 DISPLAY_PAGES_ON_MENU = True INDEX_SAVE_AS = 'blog.html' PAGE_SAVE_AS = '{slug}.html' PAGE_URL = '{slug}.html' PAGE_LANG_SAVE_AS = '{slug}-{lang}.html' PAGE_LANG_URL = '{slug}-{lang}.html' # Uncomment following line if you want document-relative URLs when developing #RELATIVE_URLS = True