I have a simple problem on Hugo. I'm trying to change the length of the summaries of posts on a list page displaying them.
If I resume the structure of my layouts and content folders, it's like this:
layouts
|--- _default
|--- baseof.html
|--- list.html
|--- single.html
|--- blog
|--- list.html
|--- single.html
content
|--- blog
|--- posts
What I did is adding the following line code in my config.toml:
summaryLength = 10
But it didn't worked. How can I do it then ?