html5-dopetrope
html5-dopetrope copied to clipboard
Posts don't correctly link to categories/tags
On the article view, the category URL results in a structure of {{ article.category }}/category/{{ category }}
and tag s are {{ article.category }}/tag/{{ tag }}.html
It seems to be misinterpreting pelicanconf.py values, and likely won't happen with 'default' URL structure ... but it's still internally inconsistent.
ARTICLE_URL = '{category}/{slug}'
ARTICLE_SAVE_AS = '{category}/{slug}.html'
CATEGORY_URL = 'category/{slug}'
CATEGORY_SAVE_AS = 'category/{slug}.html'
USE_FOLDER_AS_CATEGORY = True```