Hugo Linen
Theme Guide

Highlighted posts

The homepage can show one large feature card and three smaller cards before the latest-post list. This is useful for onboarding articles, changelogs, or evergreen writing.

Configure the list with page references:

hugo.toml
[params]  topArticles = [    "posts/getting-started",    "posts/configuration-guide",    "posts/write-with-markdown",    "posts/image-grid"  ]

If an entry cannot be resolved, the theme ignores it and continues with the remaining posts. Keep the list short and intentional; the layout is optimized for four valid items.

The homepage can show one large feature card and three smaller cards before the latest-post list. This is useful for onboarding articles, changelogs, or evergreen writing.Configure the list with page references:```toml {title="hugo.toml"}[params]  topArticles = [    "posts/getting-started",    "posts/configuration-guide",    "posts/write-with-markdown",    "posts/image-grid"  ]```If an entry cannot be resolved, the theme ignores it and continues with the remaining posts. Keep the list short and intentional; the layout is optimized for four valid items.