pelicanconf.py 945 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. #!/usr/bin/env python
  2. # -*- coding: utf-8 -*- #
  3. from __future__ import unicode_literals
  4. AUTHOR = u'theenglishway'
  5. SITENAME = u'theenglishway'
  6. SITEURL = ''
  7. PATH = 'content'
  8. TIMEZONE = 'Europe/Paris'
  9. DEFAULT_LANG = u'fr'
  10. # Feed generation is usually not desired when developing
  11. FEED_ALL_ATOM = None
  12. CATEGORY_FEED_ATOM = None
  13. TRANSLATION_FEED_ATOM = None
  14. AUTHOR_FEED_ATOM = None
  15. AUTHOR_FEED_RSS = None
  16. # Blogroll
  17. LINKS = (('Pelican', 'http://getpelican.com/'),
  18. ('Python.org', 'http://python.org/'),
  19. ('Jinja2', 'http://jinja.pocoo.org/'),
  20. ('You can modify those links in your config file', '#'),)
  21. # Social widget
  22. SOCIAL = (('My GitHub', 'https://github.com/theenglishway'),)
  23. DEFAULT_PAGINATION = False
  24. THEME = 'themes/pelican-alchemy/alchemy'
  25. DEFAULT_DATE = 'fs'
  26. ISSO_SERVER = "http://comments.theenglishway.eu"
  27. # Uncomment following line if you want document-relative URLs when developing
  28. #RELATIVE_URLS = True