shrink
This commit is contained in:
parent
ade453671f
commit
95bc62ced9
1 changed files with 10 additions and 9 deletions
|
@ -12,22 +12,23 @@ TIMEZONE = 'Europe/Paris'
|
||||||
|
|
||||||
DEFAULT_LANG = 'en'
|
DEFAULT_LANG = 'en'
|
||||||
|
|
||||||
# Feed generation is usually not desired when developing
|
|
||||||
FEED_ALL_ATOM = None
|
FEED_ALL_ATOM = None
|
||||||
CATEGORY_FEED_ATOM = None
|
CATEGORY_FEED_ATOM = None
|
||||||
TRANSLATION_FEED_ATOM = None
|
TRANSLATION_FEED_ATOM = None
|
||||||
AUTHOR_FEED_ATOM = None
|
AUTHOR_FEED_ATOM = None
|
||||||
AUTHOR_FEED_RSS = None
|
AUTHOR_FEED_RSS = None
|
||||||
|
|
||||||
# Blogroll
|
LINKS = (
|
||||||
LINKS = (('Pelican', 'http://getpelican.com/'),
|
('Pelican', 'http://getpelican.com/'),
|
||||||
('Python.org', 'http://python.org/'),
|
('Python.org', 'http://python.org/'),
|
||||||
('Jinja2', 'http://jinja.pocoo.org/'),
|
('Jinja2', 'http://jinja.pocoo.org/'),
|
||||||
('You can modify those links in your config file', '#'),)
|
('You can modify those links in your config file', '#'),
|
||||||
|
)
|
||||||
|
|
||||||
# Social widget
|
SOCIAL = (
|
||||||
SOCIAL = (('You can add links in your config file', '#'),
|
('You can add links in your config file', '#'),
|
||||||
('Another social link', '#'),)
|
('Another social link', '#'),
|
||||||
|
)
|
||||||
|
|
||||||
DEFAULT_PAGINATION = False
|
DEFAULT_PAGINATION = False
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue