Add lite version of website

This commit is contained in:
2021-07-26 18:42:50 +00:00
parent 65b3ad7fbf
commit 600cc9e51f
5 changed files with 70 additions and 66 deletions

View File

@@ -26,10 +26,10 @@ MARKDOWN = {
'markdown.extensions.codehilite': {'css_class': 'highlight'},
'markdown.extensions.extra': {},
'markdown.extensions.meta': {},
#'markdown.extensions.toc': {
# 'toc_depth': '2-3',
# 'anchorlink': True,
#},
'markdown.extensions.toc': {
'toc_depth': '2-3',
'anchorlink': True,
},
},
'output_format': 'html5',
}
@@ -56,8 +56,10 @@ TAGS_SAVE_AS = ''
INDEX_SAVE_AS = 'index.html'
ARTICLE_URL = '{slug}/'
ARTICLE_SAVE_AS = '{slug}/index.html'
ARTICLE_SAVE_AS = '{category}/{slug}/index.html'
PAGE_URL = '{slug}/'
PAGE_SAVE_AS = '{slug}/index.html'
CATEGORY_URL = '{slug}/'
CATEGORY_SAVE_AS = '{slug}/index.html'
PROD = True