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'
|
||||
|
||||
# Feed generation is usually not desired when developing
|
||||
FEED_ALL_ATOM = None
|
||||
CATEGORY_FEED_ATOM = None
|
||||
TRANSLATION_FEED_ATOM = None
|
||||
AUTHOR_FEED_ATOM = None
|
||||
AUTHOR_FEED_RSS = None
|
||||
|
||||
# Blogroll
|
||||
LINKS = (('Pelican', 'http://getpelican.com/'),
|
||||
LINKS = (
|
||||
('Pelican', 'http://getpelican.com/'),
|
||||
('Python.org', 'http://python.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 = (('You can add links in your config file', '#'),
|
||||
('Another social link', '#'),)
|
||||
SOCIAL = (
|
||||
('You can add links in your config file', '#'),
|
||||
('Another social link', '#'),
|
||||
)
|
||||
|
||||
DEFAULT_PAGINATION = False
|
||||
|
||||
|
|
Loading…
Reference in a new issue