From 432285bda8a96f0e5bdff52d4d726ad2397b3ac8 Mon Sep 17 00:00:00 2001 From: Uwe Kleine-König Date: Sun, 23 Oct 2016 22:38:55 +0200 Subject: initial approach for new flug website --- pelicanconf.py | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 pelicanconf.py (limited to 'pelicanconf.py') diff --git a/pelicanconf.py b/pelicanconf.py new file mode 100644 index 0000000..6f02c18 --- /dev/null +++ b/pelicanconf.py @@ -0,0 +1,33 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- # +from __future__ import unicode_literals + +AUTHOR = u'Uwe Kleine-K\xf6nig' +SITENAME = u'Freiburger Linux User Group' +SITEURL = '' + +PATH = 'content' + +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 = () + +# Social widget +SOCIAL = () + +DEFAULT_PAGINATION = False + +# Uncomment following line if you want document-relative URLs when developing +RELATIVE_URLS = True + +THEME = 'theme' -- cgit v1.2.3