Deploy error if install new theme

Hi all!

I want to install this theme, but there is an error message.
New theme name: Hallo Hugo

My git clone : https://github.com/tiborbokor/hallo-hugo

So, if install (deploy) new webpage with Netlify platform, installation is aborted.

Deploy settings:

Repository:
Base directory: Not set
Build command: hugo server -t hallo
Publish directory: public
Deploy log visibility: Logs are public
Builds: Active

Full error message:

https://pastebin.com/wySPSJ3q

If open new webpage url:

Page Not Found

Looks like you’ve followed a broken link or entered a URL that doesn’t exist on this site.
[ Back to our site]

Please help.
Thank you very much for all your help!!

Get it working on your local machine before you try to deploy.

Follow the steps in Quick Start to figure out how Hugo works.

Here’s how I would quickly create a new site using the Hallo theme:

hugo new site mysite
cd mysite
git init
git submodule add https://github.com/EmielH/hallo-hugo.git themes/hallo
echo 'theme = "hallo"' >> config.toml
git add -A
git commit -m "Initial commit"
hugo server

Then I would follow the theme’s configuration instructions:
https://themes.gohugo.io/hallo-hugo/#configuration

1 Like

Okay, thank you very much for your help. I’m going to do it. :slight_smile: