kimcc/hugo-theme-noteworthy

Missing Posts in the Homepage

erickvasilev opened this issue · 1 comments

There are 5 example posts in the theme, but only 2 displayed in the homepage. Basic theme installation in the forestry.io

Repo: https://github.com/erickvasilev/hugo-noteworthy2
Hugo Version: 0.69.0
Preview: https://jjwxfln8bzoqxg.instant.forestry.io/

Using theme's config.toml, paginate = 4

To fix this issue, add

[params]
        mainSections = ["post"]

in the config.toml

And add type: "post" in each contents

---
author: "Hugo Authors"
title: "Placeholder Text"
date: "2019-12-17"
description: "Lorem Ipsum Dolor Si Amet"
tags: [
    "markdown",
    "text",
]
type: "post"
---