appernetic / hugo-nederburg-theme

Nederburg is a fast and secure hugo theme and is a port of the Tracks WP theme
Other
106 stars 86 forks source link

Show post description as summary in homepage #54

Open alastor2831 opened 5 years ago

alastor2831 commented 5 years ago

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?

appernetic commented 5 years ago

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.

alastor2831 commented 5 years ago

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.

appernetic commented 5 years ago

Ok, great that you found a solution!

Can you post the code here?