Closed sandipb closed 4 years ago
Blog configuration can be modified to have different link permalink layout.
e.g. in the [permalinks] section, categories can be set up in these different ways:
[permalinks]
categories = "/category/:slug/"
categories = "/categories/:slug/"
The widgets for categories and tag_cloud were hardcoding the permalinks URL. This fix will make the URL respect permalink configuration.
Inspired from this hugo forum conversation:
https://discourse.gohugo.io/t/how-to-get-permalink-of-taxonomies-in-templates/12927/15
Thanks @sandipb for your help. Looks good for a merge.
Blog configuration can be modified to have different link permalink layout.
e.g. in the
[permalinks]
section, categories can be set up in these different ways:categories = "/category/:slug/"
categories = "/categories/:slug/"
The widgets for categories and tag_cloud were hardcoding the permalinks URL. This fix will make the URL respect permalink configuration.
Inspired from this hugo forum conversation:
https://discourse.gohugo.io/t/how-to-get-permalink-of-taxonomies-in-templates/12927/15