Skip to content
Snippets Groups Projects
pelicanconf.py 1.11 KiB
#!/usr/bin/env python
# -*- coding: utf-8 -*- #
from __future__ import unicode_literals

AUTHOR = u'Dominik George'
SITENAME = u'Dominik George'
SITEURL = ''

PATH = 'content'
STATIC_PATHS = ['static']

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

# 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'

# Uncomment following line if you want document-relative URLs when developing
#RELATIVE_URLS = True