Hello, I am using theme Hugo-Theme-Novela, I followed the instructions:
hugo new site my-awesome-blog
cd my-awesome-blog
hugo mod init github.com/forestryio/hugo-theme-novela
After that I found a new directory go.mod under content
cat go.mod
module github.com/forestryio/hugo-theme-novela
go 1.17
Then
hugo new post/my-first-post.md
hugo server -D
Then it shows a blank page, as well as the following error message on terminal:
WARN 2021/09/05 21:58:58 found no layout file for "HTML" for kind "home": You should create a template file which matches Hugo Layouts Lookup Rules for this combination.
Seem the theme module has been successfully installed, why still no layout file?