This commit is contained in:
Marc Beninca 2020-04-11 08:28:12 +02:00
parent ade453671f
commit 95bc62ced9

View file

@ -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