There is no home.html in the theme

Hi, I want to change my homepage and googled that i need to make changes in home.html , however in my theme GitHub - nodejh/hugo-theme-mini: A fast, minimalist and responsive hugo theme for bloggers. there is no home.html , how can i make changes with this theme?

If there is no home, your template uses a list.html one. Have a look here: Hugo's Lookup Order | Hugo

So copy the list.html to home.html, and you have one :wink:

1 Like

Your theme’s home page is in the root of the layouts directory:
https://github.com/nodejh/hugo-theme-mini/blob/master/layouts/index.html

If you want to override it:

mkdir-p layouts
cp themes/hugo-theme-mini/layouts/index.html layouts/

Then edit layouts/index.html.

1 Like