blog/pelicanconf.py

38 lines
862 B
Python
Raw Normal View History

#!/usr/bin/env python
# -*- coding: utf-8 -*- #
from __future__ import unicode_literals
AUTHOR = u'kleph'
SITENAME = u"kleph's blog"
SITEURL = ''
TIMEZONE = 'Europe/Paris'
LOCALE = "en_US.UTF-8"
#THEME='nmnlist'
#THEME='theme/darkstrap'
THEME='theme/bootstrapdark'
DEFAULT_LANG = u'fr'
# Feed generation is usually not desired when developing
CATEGORY_FEED_ATOM = None
TRANSLATION_FEED_ATOM = None
FEED_ALL_ATOM = 'Blog'
2013-07-05 01:36:06 +02:00
SITEURL = 'http://blog.wired.lan'
# Blogroll
LINKS = (('Pelican', 'http://getpelican.com/'),
('Python.org', 'http://python.org/'))
# Social widget
SOCIAL = (('You can add links in your config file', '#'),
('Another social link', '#'),)
DEFAULT_PAGINATION = 10
#MARKUP = [ 'asc', 'asciidoc' ]
MARKUP = ['mdown']
# Uncomment following line if you want document-relative URLs when developing
#RELATIVE_URLS = True