pelicanconf.py 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  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. EXTRA_PATH_METADATA = {
  32. 'extra/keybase.txt': {'path': 'keybase.txt'},
  33. 'extra/robots.txt': {'path': 'robots.txt'},
  34. 'extra/favicon.ico': {'path': 'favicon.ico'},
  35. }
  36. STATIC_PATHS = [
  37. 'images',
  38. 'extra/keybase.txt',
  39. 'extra/robots.txt',
  40. 'extra/favicon.ico',
  41. ]
  42. SITE_NAV = (
  43. ('Home', ''),
  44. ('About', 'pages/about.html'),
  45. ('Work', 'pages/me-professionally.html'),
  46. ('Archive', 'archives.html'),
  47. )
  48. # Blogroll
  49. LINKS = ()
  50. # LINKS = (('Pelican', 'https://getpelican.com/'),
  51. # ('Python.org', 'https://www.python.org/'),
  52. # ('Jinja2', 'https://palletsprojects.com/p/jinja/'),
  53. # ('You can modify those links in your config file', '#'),)
  54. # Social widget
  55. SOCIAL = (
  56. ('Akkoma', 'https://tinylad.social/jmelesky'),
  57. ('LinkedIn', 'https://www.linkedin.com/in/jmelesky/'),
  58. )
  59. DEFAULT_PAGINATION = 5
  60. # Uncomment following line if you want document-relative URLs when developing
  61. RELATIVE_URLS = True