hugo-nederburg-theme icon indicating copy to clipboard operation
hugo-nederburg-theme copied to clipboard

Show post description as summary in homepage

Open alastor2831 opened this issue 6 years ago • 3 comments

By default the theme takes the first paragraph or so of a post and uses it as the summary with the {{ .Summary }} variable, which is printed in the homepage image

I would like to write my own summary instead. So far I tried setting both a description field and a summary field in the YAML but nothing really changed.

---
description : "some text"
summary : "some other text"
---

Any idea?

alastor2831 avatar Feb 13 '19 16:02 alastor2831

Have you tried with a large first letter? Another solution is to add a description parameter. You can do that by overriding templates in your root layouts folder, which is the best practice for customization.

appernetic avatar Feb 13 '19 21:02 appernetic

Not sure what you mean by "large first letter", but I found a working solution on Yihui's blog.

All I did was pasting the code he posted over the {{ .Summary }} line in /layouts/partials/portfolio.html . This way if you have a field description in the YAML it will be displayed in the homepage under the title.

alastor2831 avatar Feb 14 '19 22:02 alastor2831

Ok, great that you found a solution!

Can you post the code here?

appernetic avatar Jun 20 '19 11:06 appernetic