comparison pelicanconf.py @ 0:4cd9b65e10e4

initial import of the pelican based blog
author Dirk Olmes <dirk@xanthippe.ping.de>
date Fri, 28 Jun 2013 08:48:58 +0200
parents
children 3efa31d1bc6e
comparison
equal deleted inserted replaced
-1:000000000000 0:4cd9b65e10e4
1 #!/usr/bin/env python
2 # -*- coding: utf-8 -*- #
3 from __future__ import unicode_literals
4
5 AUTHOR = u'Dirk Olmes'
6 SITENAME = u'Infoschnipsel und Wissenswertes'
7 SITEURL = 'http://xanthippe.dyndns.org/blog'
8
9 LOCALE = 'de_DE'
10 TIMEZONE = 'Europe/Berlin'
11 TYPOGRIFY = True
12
13 #THEME = 'notmyidea'
14 THEME = '../pelican-themes/built-texts'
15 DISPLAY_CATEGORIES_ON_MENU = False
16
17 DEFAULT_LANG = u'de_DE'
18 DEFAULT_DATE_FORMAT = u'%d.%m.%Y'
19
20 # Feed generation is usually not desired when developing
21 FEED_ALL_ATOM = None
22 CATEGORY_FEED_ATOM = None
23 TRANSLATION_FEED_ATOM = None
24
25 # Blogroll
26 LINKS = () #('Pelican', 'http://getpelican.com/'),
27 # ('Python.org', 'http://python.org/'),
28 # ('Jinja2', 'http://jinja.pocoo.org/'),
29 # ('You can modify those links in your config file', '#'),)
30
31 # Social widget
32 SOCIAL = () #('You can add links in your config file', '#'),
33 # ('Another social link', '#'),)
34
35 DEFAULT_PAGINATION = 10
36
37 # Uncomment following line if you want document-relative URLs when developing
38 RELATIVE_URLS = True