mirror of
https://github.com/getpelican/pelican.git
synced 2025-10-15 20:28:56 +02:00
25 lines
534 B
Python
25 lines
534 B
Python
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*- #
|
|
|
|
AUTHOR = u"$author"
|
|
SITENAME = u"$sitename"
|
|
SITEURL = '/'
|
|
|
|
TIMEZONE = 'Europe/Paris'
|
|
|
|
DEFAULT_LANG='$lang'
|
|
|
|
# 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', '#'),
|
|
)
|
|
|
|
DEFAULT_PAGINATION = $default_pagination
|