Local Build Issue when cloning the github repo

I deleted my local build repo which was in my system and now trying to clone the github repo but when try to run the hugo server, am just getting a blank white page on localhost.

Below warning shows when building. But couldn’t figure out how to solve as if i give hugo new site it generates a new skeleton build again

Build warning:
WARN 2023/10/04 07:59:11 found no layout file for “HTML” for kind “page”: You should create a template file which matches Hugo Layouts Lookup Rules for this combination.
WARN 2023/10/04 07:59:11 found no layout file for “HTML” for kind “home”: You should create a template file which matches Hugo Layouts Lookup Rules for this combination.

Without access to your repository it’s difficult to troubleshoot, but if your theme is a Git submodule you need to add it when you clone:

git clone --recurse-submodules https://github.com/user/project
1 Like

Sorry about that. Here is my repo link.

Let me try what you suggested.

Hey, a fellow bear theme user!

jim’s advice does sound right, the error usually pops up when you theme is missing (or has missing parts). check if theres anything your themes directory to troubleshoot

Thanks Jim. This one resolved the issue.