pelicanconf.py 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. AUTHOR = 'john melesky'
  2. SITENAME = "john's corner of the web"
  3. SITEURL = 'https://phaedrusdeinus.org'
  4. PATH = 'content'
  5. ARTICLE_PATHS = ['blog']
  6. ARTICLE_SAVE_AS = '{date:%Y}/{date:%m}/{date:%d}/{slug}.html'
  7. ARTICLE_URL = '{date:%Y}/{date:%m}/{date:%d}/{slug}.html'
  8. TAGS_SAVE_AS = 'tags.html'
  9. TIMEZONE = 'US/Pacific'
  10. DEFAULT_LANG = 'en'
  11. THEME = '/home/jmelesky/code/pelican-sober'
  12. PLUGINS = ['render_math']
  13. MARKDOWN = {
  14. 'extensions': [
  15. 'markdown_captions',
  16. 'extra',
  17. 'codehilite',
  18. 'meta',
  19. 'sane_lists',
  20. 'smarty',
  21. 'legacy_em',
  22. 'legacy_attrs',
  23. ],
  24. }
  25. # Feed generation is usually not desired when developing
  26. FEED_ALL_ATOM = None
  27. CATEGORY_FEED_ATOM = None
  28. TRANSLATION_FEED_ATOM = None
  29. AUTHOR_FEED_ATOM = None
  30. AUTHOR_FEED_RSS = None
  31. SITE_NAV = (
  32. ('Home', ''),
  33. ('About', 'pages/about.html'),
  34. ('Work', 'pages/me-professionally.html'),
  35. ('Archive', 'archives.html'),
  36. )
  37. # Blogroll
  38. LINKS = ()
  39. # LINKS = (('Pelican', 'https://getpelican.com/'),
  40. # ('Python.org', 'https://www.python.org/'),
  41. # ('Jinja2', 'https://palletsprojects.com/p/jinja/'),
  42. # ('You can modify those links in your config file', '#'),)
  43. # Social widget
  44. SOCIAL = (
  45. ('Akkoma', 'https://tinylad.social/jmelesky'),
  46. ('LinkedIn', 'https://www.linkedin.com/in/jmelesky/'),
  47. )
  48. DEFAULT_PAGINATION = 5
  49. # Uncomment following line if you want document-relative URLs when developing
  50. RELATIVE_URLS = True