pelicanconf.py 794 B

12345678910111213141516171819202122232425262728293031
  1. AUTHOR = 'banshee'
  2. SITENAME = 'blog.grink.tech'
  3. SITEURL = ''
  4. PATH = 'content'
  5. TIMEZONE = 'Europe/London'
  6. DEFAULT_LANG = 'en'
  7. # Feed generation is usually not desired when developing
  8. FEED_ALL_ATOM = None
  9. CATEGORY_FEED_ATOM = None
  10. TRANSLATION_FEED_ATOM = None
  11. AUTHOR_FEED_ATOM = None
  12. AUTHOR_FEED_RSS = None
  13. # Blogroll
  14. LINKS = (('Pelican', 'https://getpelican.com/'),
  15. ('Python.org', 'https://www.python.org/'),
  16. ('Jinja2', 'https://palletsprojects.com/p/jinja/'),
  17. ('You can modify those links in your config file', '#'),)
  18. # Social widget
  19. SOCIAL = (('You can add links in your config file', '#'),
  20. ('Another social link', '#'),)
  21. DEFAULT_PAGINATION = False
  22. # Uncomment following line if you want document-relative URLs when developing
  23. #RELATIVE_URLS = True