euer_blog/pelicanconf.py

40 lines
1.2 KiB
Python
Raw Normal View History

2014-02-14 16:06:50 +01:00
#!/usr/bin/env python
# -*- coding: utf-8 -*- #
from __future__ import unicode_literals
AUTHOR = 'makefu'
SITENAME = 'only code is pure'
SITEURL = 'http://syntax-fehler.de'
#SITESUBTITLE = 'A collection of pseudocode snippets'
TIMEZONE = 'Europe/Berlin'
THEME = './pelican-themes/gum/'
DEFAULT_LANG = 'en'
2014-05-21 18:26:18 +02:00
#DEFAULT_CATEGORY = 'misc'
2014-02-14 16:06:50 +01:00
# Feed generation is usually not desired when developing
2014-05-21 18:26:18 +02:00
FEED_ALL_ATOM = 'atom.xml'
2014-02-14 16:06:50 +01:00
CATEGORY_FEED_ATOM = None
TRANSLATION_FEED_ATOM = None
2014-05-21 18:26:18 +02:00
STATIC_PATHS = ['extra/robots.txt',
'wiki/knowledge_base.html',
'wiki/knowledge_base.xml', ]
2014-02-14 16:06:50 +01:00
EXTRA_PATH_METADATA = { 'extra/robots.txt': {'path': 'robots.txt'}, }
2014-05-21 18:26:18 +02:00
# Blogroll
2014-02-14 16:06:50 +01:00
LINKS = (('exco\'s blog', 'http://excogitation.de'),
('Binaergewitter', 'http://krepel.us'),)
# Social widget
SOCIAL = (('@makefoo', 'http://twitter.com/makefoo') ,)
DEFAULT_PAGINATION = 10
2014-05-21 18:26:18 +02:00
DISQUS_SITENAME = 'euer'
#GOOGLE_ANALYTICS = ""
PIWIK_URL='mediengewitter.krebsco.de:10000'
PIWIK_SITE_ID=1
2014-02-14 16:06:50 +01:00
# Uncomment following line if you want document-relative URLs when developing
RELATIVE_URLS = True
2014-05-21 18:26:18 +02:00
MENUITEMS = ( ( 'Wiki', '/wiki/knowledge_base.html'),
( 'Graphs', '/graphs/retiolum/'),( 'RSS', '/atom.xml',),)