aboutsummaryrefslogtreecommitdiff
path: root/pelicanconf.py
diff options
context:
space:
mode:
authorChimrod <contact+git@chimrod.com>2013-04-16 21:27:30 +0200
committerChimrod <contact+git@chimrod.com>2013-04-16 21:27:30 +0200
commit66a5a0cdccd464930a232c87f91e1b0805f255a5 (patch)
tree1563108cc22cfdc250108eb25b3beaf51d398dff /pelicanconf.py
initial commit
Diffstat (limited to 'pelicanconf.py')
-rwxr-xr-xpelicanconf.py41
1 files changed, 41 insertions, 0 deletions
diff --git a/pelicanconf.py b/pelicanconf.py
new file mode 100755
index 0000000..abbf488
--- /dev/null
+++ b/pelicanconf.py
@@ -0,0 +1,41 @@
+#!/usr/bin/env python
+# -*- coding: utf-8 -*- #
+
+AUTHOR = u'Chimrod'
+SITENAME = u'Chimrod'
+SITEURL = 'http://blog.chimrod.com/'
+
+TIMEZONE = 'Europe/Paris'
+
+DEFAULT_LANG = u'fr'
+
+#ARTICLE_DIR = 'articles'
+
+# Blogroll
+#LINKS = (('Pelican', 'http://docs.notmyidea.org/alexis/pelican/'),
+# ('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 = 4
+FEED_DOMAIN = SITEURL
+FEED_RSS = 'feed'
+FEED_ATOM = 'feeds/atom.xml'
+FEED_MAX_ITEMS=5
+TAG_FEED_RSS = 'feeds/%s.xml'
+TAG_FEED_ATOM = 'feeds/%s.atom'
+
+ARTICLE_URL = u'{date:%Y}/{date:%m}/{slug}/'
+ARTICLE_SAVE_AS = u'{date:%Y}/{date:%m}/{slug}/index.html'
+
+DISQUS_SITENAME='chimrod'
+
+THEME = 'theme'
+TYPOGRIFY = True
+
+from pelican.plugins import related_posts
+PLUGINS = [related_posts]