move to new theme canterville

This commit is contained in:
Don Harper 2019-04-12 22:46:00 -05:00
parent 302b5df4ef
commit 32036e0e4f
21 changed files with 2587 additions and 8 deletions

25
conf.py
View file

@ -15,7 +15,7 @@ TRANSLATIONS_PATTERN = "{path}.{lang}.{ext}"
NAVIGATION_LINKS = {
DEFAULT_LANG: (
('/', 'Home'),
('/stories/about/', 'About me'),
('/stories/about.html', 'About me'),
('https://www.duckland.org', 'My Personal and Tech Blog'),
#(
#(
@ -36,15 +36,26 @@ NAVIGATION_LINKS = {
#),
("/archive.html", "Archive"),
("/categories/", "Tags"),
("/stories/privacy/", "Privacy/GDPR"),
("/stories/privacy.html", "Privacy/GDPR"),
('/rss.xml', 'RSS'),
),
}
THEME = "hyde"
#THEME = "hyde"
#GLOBAL_CONTEXT = {'HACK_VARIANT': 'dark'}
GLOBAL_CONTEXT_FILLER = []
THEME = 'canterville'
LOGO_URL = 'https://getnikola.com/assets/img/logo.svg'
GLOBAL_CONTEXT = {
'TWITTER_URL': 'https://twitter.com/duckunix',
'FLICKR_URL': 'https://www.flickr.com/photos/duckunix/',
'BANNER_URL': '/assets/img/road.jpg'
#'BANNER_URL': '/assets/img/silk-road.jpg'
}
TIMEZONE = "CDT6CST"
DATE_FORMAT = 'YYYY-MM-dd'
JS_DATE_FORMAT = 'YYYY-MM-dd'
DATE_FANCINESS = 1
#DATE_FORMAT = "YYYY-MM-dd"
#DATE_FORMAT = 'short'
#JS_DATE_FORMAT = 'YYYY-MM-dd HH:mm'
DATE_FANCINESS = 0
POSTS = (
("posts/*.rst", "posts", "post.tmpl"),
("posts/*.md", "posts", "post.tmpl"),
@ -104,7 +115,5 @@ LOGGING_HANDLERS = {
'smtp': { 'from_addr': 'www.donaldharper.com@duckland.org', 'recipients': ('duck@duckland.org'), 'server_addr': ('127.0.0.1',25), 'secure': (), 'level': 'WARNING', 'bubble': False
}
}
GLOBAL_CONTEXT = {'HACK_VARIANT': 'dark'}
GLOBAL_CONTEXT_FILLER = []
CREATE_MONTHLY_ARCHIVE = True
WRITE_TAG_CLOUD = False