This is our website repo. Nothing fancy so far. Just a few Hugo pages.
- Install Hugo
hugo serve
Check this link below for install hugo on your computer. hugo install documentation
Hugo provides a new
command to create a new website.
hugo new site <new_project>
Run this command
hugo new site timer-hugo
and then go to the themes folder inside of timer-hugo folder. You can also use this command cd timer-hugo/themes
for going to this folder. Then
run the command
git clone [email protected]:themefisher/timer-hugo.git
Alternatively, you can download the theme as .zip file and extract it in the themes
directory
After that you need to go to the timer-hugo/exampleSite
folder and copy or cut all the elements, and now go back to the root folder and paste it
here.
open the command prompt again and run cd ../
command for go back to the root folder.
Launching the website locally by using the following command:
hugo serve
Go to http://localhost:1313
Or you can check this video documentation for installing this template: {{< youtube Ezd_STvPJbA >}}
When building the website, you can set a theme by using --theme
option. However, we suggest you modify the configuration file (config.toml
) and
set the theme as the default.
# Change the default theme to be use when building the site with Hugo
theme = "timer-hugo"
hugo new blog/post-name.md
When your site is ready to deploy, run the following command:
hugo
# You can also create a minified version by using this command:
hugo--minify
A public
folder will be generated, containing all static content and assets for your website. It can now be deployed on any web server.