a theme for Hugo, a framework for building websites.
The intent of this theme is to provide a theme for all wanderers who need to extend blog content of maps, tracks, locations and other entities related to traveling
See Documentation
If you installed a Hugo binary, you may not have Go installed on your machine. To check if Go is installed:
$ go version
Go modules were considered production ready in v1.14. Download Go.
-
From your project's root directory, initiate the hugo module system if you haven't already:
$ hugo mod init github.com/<your_user>/<your_project> -
Add the theme's repo to your
config.yaml:theme: github.com/mnezerka/wanderer
In order to see your site in action, run Hugo's built-in local server.
hugo serverNow enter localhost:1313 in the address bar of your browser.
To run in production (e.g. to have Google Analytics show up), run HUGO_ENV=production before your build command. For example:
HUGO_ENV=production hugo
Note: The above command will not work on Windows. If you are running a Windows OS, use the below command: yes
set HUGO_ENV=production
hugo