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
If you installed a Hugo binary, you may not have Go installed on your machine. To check if Go is installed: >
$ go versionGo 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
After installing the theme successfully it requires a just a few more steps to get your site running.
Take a look inside the
exampleSite
folder of this theme, copy it and modify it (you may need to delete the line:
themesDir = "../.."). Or crate file from following minimal template, which
configures site for Czech content (feel free to change language code from cs
to en):
baseURL: https://your-domain.net/
title: Title of your website
languageCode: cs
defaultContentLanguage: cs
paginate: 10
removePathAccents: true
outputs:
home:
- html
- json
params:
author: Your name
poweredBy: Powered by <a href='http://www.gohugo.io/'>Hugo</a>
mapyCzApiKey: "XuWC......"
mapClustering: "no"
theme: github.com/mnezerka/wandererThis is how to configure your website to produce list of media items attached
to individual pages. The list would be available as https://yourdomain/mediaindex.json:
outputFormats:
MediaIndex:
baseName: mediaindex
isPlainText: true
mediaType: application/json
notAlternative: true
outputs:
home:
- html
- json
- MediaIndexTOOD:
TODO:
TODO:
TODO:
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