2012-05-06 12:07:13 +02:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
# -*- coding: utf-8 -*- #
|
|
|
|
|
|
2012-09-17 22:36:35 -04:00
|
|
|
AUTHOR = $author
|
|
|
|
|
SITENAME = $sitename
|
2012-07-05 12:15:55 -07:00
|
|
|
SITEURL = ''
|
2012-05-06 12:07:13 +02:00
|
|
|
|
|
|
|
|
TIMEZONE = 'Europe/Paris'
|
|
|
|
|
|
2012-09-17 22:36:35 -04:00
|
|
|
DEFAULT_LANG = $lang
|
2012-05-06 12:07:13 +02:00
|
|
|
|
|
|
|
|
# Blogroll
|
2012-07-07 10:33:47 -07:00
|
|
|
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', '#'),)
|
2012-05-06 12:07:13 +02:00
|
|
|
|
|
|
|
|
# Social widget
|
2012-07-07 10:33:47 -07:00
|
|
|
SOCIAL = (('You can add links in your config file', '#'),
|
|
|
|
|
('Another social link', '#'),)
|
2012-05-06 12:07:13 +02:00
|
|
|
|
|
|
|
|
DEFAULT_PAGINATION = $default_pagination
|