https://github.com/jsanz/mini-hugo
A minimal Hugo theme to host static pages
https://github.com/jsanz/mini-hugo
Last synced: 4 months ago
JSON representation
A minimal Hugo theme to host static pages
- Host: GitHub
- URL: https://github.com/jsanz/mini-hugo
- Owner: jsanz
- Created: 2021-05-19T14:56:42.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2021-08-09T17:21:03.000Z (almost 5 years ago)
- Last Synced: 2025-10-17T00:47:15.110Z (8 months ago)
- Language: HTML
- Size: 28.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# A minimal Hugo theme
This is simple theme for Hugo, just with only the minimal components and meant to serve static pages. This is not a theme for a blog or a diary.
The theme is a heavy adaptation of [XMin](https://themes.gohugo.io/hugo-xmin/).
Create a new hugo site, initialize git on it, and then add this repo as a submodule. Finally add the theme to your configuration:
```bash
$ hugo new site my-new-site
$ cd my-new-site
$ git init
$ git submodule add git@github.com:jsanz/mini-hugo.git themes/mini-hugo
$ echo 'theme = "mini-hugo"' >> config.toml
```
At that point you can start adding pages to the `content` folder and decide your website structure.
This site is meant to be used to the bare minimum with a config like, check the example site provided for reference.