Hugo Themes
Sustain
Personal blog built with Bootstrap, powered by Hugo
- Author: Nurlan Suyundukov
- Minimum Hugo Version: 0.41.0
- GitHub Stars: 205
- Updated: 2023-05-24
- License: MIT
- Tags: Blog Minimal Responsive


Table of Contents

Installation
With git
From the root of your Hugo site, clone the theme into themes/hugo-sustain by running :
git clone https://github.com/nurlansu/hugo-sustain.git themes/hugo-sustain
Manual
- Download zip archive.
- Unarchive it.
- Move
hugo-sustainfolder inthemesfolder of your blog
For more information read the official setup guide of Hugo.
Quick start
After installation, take a look in the exampleSite folder at. This directory contains an example config file and the content for the demo. It serves as an example setup for your documentation.
exampleSite
├── config.toml
├── content
│ ├── projects.md
│ │
│ └── blog
│ ├── creating-a-new-theme.md
│ ├── go-is-for-lovers.md
│ ├── hugo-is-for-lovers.md
│ └── migrate-from-jekyll.md
│
├── data
│ └── projects.yml
│
└── static
Copy at least the config.toml in the root directory of your website. Overwrite the existing config file if necessary.
Hugo includes a development server, so you can view your changes as you go - very handy. Spin it up with the following command:
hugo serve
Now you can go to localhost:1313 and the Sustain theme should be visible.
Features
Syntax highlighting
Use highlight = true in the front matter to include highlight.js javascript and css files.
Disqus
To use this feature, uncomment and fill out the disqusShortname parameter in config.toml.
Google Analytics
To add Google Analytics, simply sign up to Google Analytics to obtain your Google Tracking ID, and add this tracking ID to the googleAnalytics parameter in config.toml.
About
This is a port of the Jekyll theme Sustain by Fábio Madeira. It supports most of the features of the original theme.
Contributing
Pull requests, bug fixes, and new features are welcome!
- Fork the repository
- Create your feature branch (
git checkout -b my-new-feature) - Commit your changes (
git commit -a -m 'Add some feature') - Push to the branch (
git push origin my-new-feature) - Create new Pull Request on GitHub