auto commit due to nikola deploy Sun Jul 31 22:03:20 CDT 2016

This commit is contained in:
Don Harper 2016-07-31 22:03:20 -05:00
parent 7ed4e8148d
commit 67ca4608a0
2 changed files with 30 additions and 7 deletions

15
conf.py
View file

@ -38,28 +38,29 @@ NAVIGATION_LINKS = {
),
}
#THEME = "slate"
#THEME = "duckland"
THEME = "duckland"
#THEME = "superhero"
THEME = "material-theme"
#THEME = "material-theme"
TIMEZONE = "CDT6CST"
DATE_FORMAT = '%Y-%m-%d'
JS_DATE_FORMAT = 'YYYY-MM-DD'
DATE_FANCINESS = 1
PRETTY_URLS = False
POSTS = (
("posts/*.md", "posts", "post.tmpl"),
("posts/*.rst", "posts", "post.tmpl"),
("posts/*.txt", "posts", "post.tmpl"),
("posts/*.md", "posts", "post.tmpl"),
("posts/*.rst", "posts", "post.tmpl"),
("posts/*.txt", "posts", "post.tmpl"),
("posts/*.html", "posts", "post.tmpl"),
("posts/*.wp", "posts", "post.tmpl"),
("posts/*.wp", "posts", "post.tmpl"),
)
PAGES = (
("stories/*.md", "stories", "story.tmpl"),
("stories/*.rst", "stories", "story.tmpl"),
("stories/*.txt", "stories", "story.tmpl"),
)
COMPILERS = {
"rest": ('.rst', '.txt'),
"markdown": ('.md', '.mdown', '.markdown'),
"rest": ('.rst', '.txt'),
"textile": ('.textile',),
"txt2tags": ('.t2t',),
"bbcode": ('.bb',),