summaryrefslogtreecommitdiffstats
path: root/pelicanconf.py
diff options
context:
space:
mode:
authormakefu <github@syntax-fehler.de>2014-02-14 16:06:50 +0100
committermakefu <github@syntax-fehler.de>2014-02-14 16:06:50 +0100
commitd2ff51546f349b10b14ce5d9627c7959d39b2879 (patch)
tree5e46147fa1c9ee738d761daf25213748dab2c25b /pelicanconf.py
initial vomit
Diffstat (limited to 'pelicanconf.py')
-rw-r--r--pelicanconf.py31
1 files changed, 31 insertions, 0 deletions
diff --git a/pelicanconf.py b/pelicanconf.py
new file mode 100644
index 0000000..1a2b6af
--- /dev/null
+++ b/pelicanconf.py
@@ -0,0 +1,31 @@
+#!/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'
+DEFAULT_CATEGORY = 'misc'
+# Feed generation is usually not desired when developing
+FEED_ALL_ATOM = 'feeds/all.atom.xml'
+CATEGORY_FEED_ATOM = None
+TRANSLATION_FEED_ATOM = None
+# Blogroll
+STATIC_PATHS = [ 'extra/robots.txt', ]
+EXTRA_PATH_METADATA = { 'extra/robots.txt': {'path': 'robots.txt'}, }
+
+LINKS = (('exco\'s blog', 'http://excogitation.de'),
+ ('Binaergewitter', 'http://krepel.us'),)
+
+# Social widget
+SOCIAL = (('@makefoo', 'http://twitter.com/makefoo') ,)
+DEFAULT_PAGINATION = 10
+
+# Uncomment following line if you want document-relative URLs when developing
+RELATIVE_URLS = True
+MENUITEMS = (( 'RSS', '/feeds/all.atom.xml'),)