pelicanconf.py 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. #!/usr/bin/env python
  2. # -*- coding: utf-8 -*- #
  3. from __future__ import unicode_literals
  4. AUTHOR = 'Caleb Fangmeier'
  5. SITENAME = "Caleb Fangmeier's Doctoral Thesis"
  6. SITEURL = 'thesis.fangmeier.tech'
  7. PATH = 'content'
  8. TIMEZONE = 'America/Chicago'
  9. DEFAULT_LANG = 'en'
  10. THEME = 'elegant'
  11. PLUGIN_PATHS = ['plugins']
  12. PLUGINS = ['extract_toc']
  13. MARKDOWN = {
  14. 'extension_configs': {
  15. 'markdown.extensions.codehilite': {'css_class': 'highlight'},
  16. 'markdown.extensions.extra': {},
  17. 'markdown.extensions.meta': {},
  18. 'markdown.extensions.toc': {},
  19. },
  20. 'output_format': 'html5',
  21. }
  22. # Feed generation is usually not desired when developing
  23. # FEED_ALL_ATOM = None
  24. # CATEGORY_FEED_ATOM = None
  25. # TRANSLATION_FEED_ATOM = None
  26. # AUTHOR_FEED_ATOM = None
  27. # AUTHOR_FEED_RSS = None
  28. # Blogroll
  29. # LINKS = (('Pelican', 'http://getpelican.com/'),
  30. # ('Python.org', 'http://python.org/'),
  31. # ('Jinja2', 'http://jinja.pocoo.org/'),
  32. # ('You can modify those links in your config file', '#'),)
  33. # Social widget
  34. # SOCIAL = (('You can add links in your config file', '#'),
  35. # ('Another social link', '#'),)
  36. DEFAULT_PAGINATION = 10
  37. # Uncomment following line if you want document-relative URLs when developing
  38. RELATIVE_URLS = True