Installation
This is a WIP hugo theme for Xalgorithms Foundation websites. This website uses the theme. It is intended for documentation and other writing heavy uses.
Test out the theme by starting a new Hugo project.
hugo new site quickstart
Next, add the template as a submodule.
cd quickstart
git init
git submodule add https://gitlab.com/seeddisburser/xf-material-theme.git
Include the theme in the config.
echo 'theme = "xf-material-theme"' >> config.toml
Be Aware
Currently I have only tested the site with the following structure:
.
└── content
├── foo
| ├── _index.md
| └── firstpost.md
└── bar
├── _index.md
├── firstpost.md
└── secondpost.md
Some features will likely break with further sub-directories.
_index.md
files are required for directories within content
.