vjeantet / hugo-theme-docdock

Declination of @matcornic Learn theme to Hugo

Home Page:https://docdock.netlify.com/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Extra "s" in aside menu entry titles

andrescs91 opened this issue · comments

When creating new content folders on the side menu, it automatically adds an extra "s" at the end of the name. I tried editing the htmls of every page, but now I see it overwrote all my changes and the extra "s" is back again. How can I fix that?

you probably want to add the following line to your config.toml:

pluralizelisttitles = false

if you put a file called _index.md in the folder then you can name the content folders manually in the index file like this:

---
title: Title for my content folder
---

@dspaxton yeah, could figure this is what was missing and it worked perfectly, thanks!!