summaryrefslogtreecommitdiff
path: root/pelicanconf.py
diff options
context:
space:
mode:
authorVictor Toso <victortoso@redhat.com>2015-10-12 11:03:09 +0200
committerVictor Toso <victortoso@redhat.com>2015-10-12 11:03:09 +0200
commit68aca6080be64728b725cfe6e959cfad09fe6098 (patch)
treebe118758d2e6dda81361a72fe5e902a87f39e206 /pelicanconf.py
Initial commit
This is the basic setup from pelican-quickstart + the Contact webpage of current http://www.spice-space.org/contact.html
Diffstat (limited to 'pelicanconf.py')
-rw-r--r--pelicanconf.py34
1 files changed, 34 insertions, 0 deletions
diff --git a/pelicanconf.py b/pelicanconf.py
new file mode 100644
index 0000000..5038f12
--- /dev/null
+++ b/pelicanconf.py
@@ -0,0 +1,34 @@
+# -*- coding: utf-8 -*- #
+from __future__ import unicode_literals
+
+AUTHOR = u'spice-team'
+SITENAME = u'SPICE'
+SITEURL = ''
+
+PATH = 'content'
+
+TIMEZONE = 'Europe/Paris'
+
+DEFAULT_LANG = u'en'
+
+# 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 = (('You can add links in your config file', '#'),
+ ('Another social link', '#'),)
+
+DEFAULT_PAGINATION = False
+
+# Uncomment following line if you want document-relative URLs when developing
+#RELATIVE_URLS = True