123456789101112131415161718192021222324252627282930313233343536373839 |
- AUTHOR = 'john melesky'
- SITENAME = "john's corner of the web"
- SITEURL = ''
- PATH = 'content'
- ARTICLE_PATHS = ['blog']
- ARTICLE_SAVE_AS = '{date:%Y}/{slug}.html'
- ARTICLE_URL = '{date:%Y}/{slug}.html'
- TIMEZONE = 'US/Pacific'
- DEFAULT_LANG = 'en'
- THEME = '/home/jmelesky/external_src/pelican-sober'
- PLUGINS = ['render_math']
- # Feed generation is usually not desired when developing
- FEED_ALL_ATOM = None
- CATEGORY_FEED_ATOM = None
- TRANSLATION_FEED_ATOM = None
- AUTHOR_FEED_ATOM = None
- AUTHOR_FEED_RSS = None
- # Blogroll
- LINKS = ()
- # LINKS = (('Pelican', 'https://getpelican.com/'),
- # ('Python.org', 'https://www.python.org/'),
- # ('Jinja2', 'https://palletsprojects.com/p/jinja/'),
- # ('You can modify those links in your config file', '#'),)
- # Social widget
- SOCIAL = (('Akkoma', 'https://tinylad.social/jmelesky'),
- ('LinkedIn', 'https://www.linkedin.com/in/jmelesky/'),)
- DEFAULT_PAGINATION = 10
- # Uncomment following line if you want document-relative URLs when developing
- #RELATIVE_URLS = True
|