Le site internet de CLI
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

pelicanconf.py 883B

123456789101112131415161718192021222324252627282930313233343536
  1. #!/usr/bin/env python
  2. # -*- coding: utf-8 -*- #
  3. from __future__ import unicode_literals
  4. AUTHOR = 'maxime alves'
  5. SITENAME = 'scop cli'
  6. SITEURL = ''
  7. PATH = 'content'
  8. TIMEZONE = 'Europe/Paris'
  9. DEFAULT_LANG = '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 = (('You can add links in your config file', '#'),
  23. # ('Another social link', '#'),)
  24. DEFAULT_PAGINATION = 3
  25. # Uncomment following line if you want document-relative URLs when developing
  26. #RELATIVE_URLS = True
  27. MD_EXTENSION = []