pelicanconf.py 1000 B

1234567891011121314151617181920212223242526272829303132333435
  1. #!/usr/bin/env python
  2. # -*- coding: utf-8 -*- #
  3. from __future__ import unicode_literals
  4. AUTHOR = 'TDN'
  5. SITENAME = "Touraine Data Network - Fournisseur d'accès à Internet associatif et éthique en région Centre"
  6. SITEURL = 'https://www.tdn-fai.net'
  7. PATH = 'content'
  8. STATIC_PATHS = ['images', 'documents']
  9. TIMEZONE = 'Europe/Paris'
  10. DEFAULT_LANG = 'fr'
  11. # Feed generation is usually not desired when developing
  12. FEED_ALL_ATOM = None
  13. CATEGORY_FEED_ATOM = None
  14. TRANSLATION_FEED_ATOM = None
  15. AUTHOR_FEED_ATOM = None
  16. AUTHOR_FEED_RSS = None
  17. # Blogroll
  18. LINKS = (('Pelican', 'http://getpelican.com/'),
  19. ('Python.org', 'http://python.org/'),
  20. ('Jinja2', 'http://jinja.pocoo.org/'),
  21. ('You can modify those links in your config file', '#'),)
  22. # Social widget
  23. SOCIAL = (('You can add links in your config file', '#'),
  24. ('Another social link', '#'),)
  25. DEFAULT_PAGINATION = 10
  26. # Uncomment following line if you want document-relative URLs when developing
  27. #RELATIVE_URLS = True