master
Raw Download raw file
 1#!/usr/bin/env python
 2# -*- coding: utf-8 -*- #
 3from __future__ import unicode_literals
 4
 5AUTHOR = u'bryfry'
 6SITENAME = u'bryfry.com'
 7SITEURL = ''
 8
 9TIMEZONE = 'Europe/Paris'
10
11DEFAULT_LANG = u'en'
12
13# Feed generation is usually not desired when developing
14FEED_ALL_ATOM = None
15CATEGORY_FEED_ATOM = None
16TRANSLATION_FEED_ATOM = None
17
18# Blogroll
19LINKS =  (('Pelican', 'http://getpelican.com/'),
20          ('Python.org', 'http://python.org/'),
21          ('Jinja2', 'http://jinja.pocoo.org/'),
22          ('You can modify those links in your config file', '#'),)
23
24# Social widget
25SOCIAL = (('You can add links in your config file', '#'),
26          ('Another social link', '#'),)
27
28DEFAULT_PAGINATION = 10
29
30# Uncomment following line if you want document-relative URLs when developing
31#RELATIVE_URLS = True