joeroe / risotto

A minimalist, responsive hugo theme inspired by terminal ricing aesthetics.
https://risotto.joeroe.io
MIT License
437 stars 114 forks source link

No new content is displayed #89

Closed Monkeyfacemoney closed 1 month ago

Monkeyfacemoney commented 1 month ago

No new content is displayed. I've tried to deploy a new site but no new posts are displayed for some reason with this theme. When I use other themes it works as expected.

I make the post with: hugo new content content/posts/test.md

and put the draft flag to = false

Hugo v0.123.7+extended linux/amd64 BuildDate=2024-07-16T05:50:19Z VendorInfo=ubuntu:0.123.7-1ubuntu0.1

joeroe commented 1 month ago

Thank you for the report @Monkeyfacemoney. I tried to reproduce this with the following steps (adapted from the hugo quick start guide):

hugo new site quickstart
cd quickstart
git init
git submodule add https://github.com/joeroe/risotto.git themes/risotto
echo "theme = 'risotto'" >> hugo.toml
hugo new content content/posts/my-first-post.md
hugo server -D

The site was successfully generated and the new post was visible and listed under /posts. Did you experience or expect something different?