fixed buggy URLs for non-default language articles

This commit is contained in:
eclipse 2025-02-13 13:48:09 +01:00
parent 499a2411f8
commit a598ecccdf

View File

@ -22,8 +22,10 @@ ARTICLE_PATHS = ["posts"]
PAGE_PATHS = ["pages"]
#PATH_METADATA = '(?P<path_no_ext>.*)\..*'
#PAGE_SAVE_AS = '{path_no_ext}.html'
PAGE_URL = '{slug}/'
PAGE_SAVE_AS = '{slug}/index.html'
ARTICLE_SAVE_AS = '{category}/{slug}.html'
ARTICLE_LANG_SAVE_AS = '{category}/{slug}.html'
DEFAULT_PAGINATION = 5