|
@@ -1,17 +1,20 @@
|
|
AUTHOR = 'john melesky'
|
|
AUTHOR = 'john melesky'
|
|
SITENAME = "john's corner of the web"
|
|
SITENAME = "john's corner of the web"
|
|
-SITEURL = ''
|
|
|
|
|
|
+SITEURL = 'https://phaedrusdeinus.org'
|
|
|
|
|
|
PATH = 'content'
|
|
PATH = 'content'
|
|
ARTICLE_PATHS = ['blog']
|
|
ARTICLE_PATHS = ['blog']
|
|
ARTICLE_SAVE_AS = '{date:%Y}/{date:%m}/{date:%d}/{slug}.html'
|
|
ARTICLE_SAVE_AS = '{date:%Y}/{date:%m}/{date:%d}/{slug}.html'
|
|
ARTICLE_URL = '{date:%Y}/{date:%m}/{date:%d}/{slug}.html'
|
|
ARTICLE_URL = '{date:%Y}/{date:%m}/{date:%d}/{slug}.html'
|
|
|
|
|
|
|
|
+TAGS_SAVE_AS = 'tags.html'
|
|
|
|
+
|
|
|
|
+
|
|
TIMEZONE = 'US/Pacific'
|
|
TIMEZONE = 'US/Pacific'
|
|
|
|
|
|
DEFAULT_LANG = 'en'
|
|
DEFAULT_LANG = 'en'
|
|
|
|
|
|
-THEME = '/home/jmelesky/external_src/pelican-sober'
|
|
|
|
|
|
+THEME = '/home/jmelesky/code/pelican-sober'
|
|
|
|
|
|
PLUGINS = ['render_math']
|
|
PLUGINS = ['render_math']
|
|
|
|
|
|
@@ -35,6 +38,13 @@ TRANSLATION_FEED_ATOM = None
|
|
AUTHOR_FEED_ATOM = None
|
|
AUTHOR_FEED_ATOM = None
|
|
AUTHOR_FEED_RSS = None
|
|
AUTHOR_FEED_RSS = None
|
|
|
|
|
|
|
|
+SITE_NAV = (
|
|
|
|
+ ('Home', ''),
|
|
|
|
+ ('About', 'pages/about.html'),
|
|
|
|
+ ('Work', 'pages/work.html'),
|
|
|
|
+ ('Archive', 'archives.html'),
|
|
|
|
+)
|
|
|
|
+
|
|
# Blogroll
|
|
# Blogroll
|
|
LINKS = ()
|
|
LINKS = ()
|
|
# LINKS = (('Pelican', 'https://getpelican.com/'),
|
|
# LINKS = (('Pelican', 'https://getpelican.com/'),
|
|
@@ -43,10 +53,12 @@ LINKS = ()
|
|
# ('You can modify those links in your config file', '#'),)
|
|
# ('You can modify those links in your config file', '#'),)
|
|
|
|
|
|
# Social widget
|
|
# Social widget
|
|
-SOCIAL = (('Akkoma', 'https://tinylad.social/jmelesky'),
|
|
|
|
- ('LinkedIn', 'https://www.linkedin.com/in/jmelesky/'),)
|
|
|
|
|
|
+SOCIAL = (
|
|
|
|
+ ('Akkoma', 'https://tinylad.social/jmelesky'),
|
|
|
|
+ ('LinkedIn', 'https://www.linkedin.com/in/jmelesky/'),
|
|
|
|
+)
|
|
|
|
|
|
-DEFAULT_PAGINATION = 10
|
|
|
|
|
|
+DEFAULT_PAGINATION = 5
|
|
|
|
|
|
# Uncomment following line if you want document-relative URLs when developing
|
|
# Uncomment following line if you want document-relative URLs when developing
|
|
-#RELATIVE_URLS = True
|
|
|
|
|
|
+RELATIVE_URLS = True
|