Simple hugo backbone using bower for public library management, LESS as a style preprocessor & the grunt task runner
- Static generation ;
- Live reload for development ;
- Support for LESS ;
- Support for i18n ;
- Assets processing ;
- Because the hugo structure is kept intact, you can still use the
hugo
CLI.
git clone git@github.com:florenthobein/hugo-start.git hugo_start && \
cd hugo_start && \
npm install
grunt
Your website will be accessible at http://localhost:9000
.
grunt dist
The folder build/dist/
will contain the static site ready for production.
After adding the desired library by its bower install
command, run grunt init
to wire the libraries in the layout.
You can bump the package by using the task grunt bump
that will change the semver version of the package. If you want to modify the minor
or major
version of the package, use grunt bump:minor
or grunt bump:major
.
Either in the corresponding page file in the content/
folder, or in the i18n/
folder.
Copyright (c) 2017 Florent Hobein. Licensed under the MIT license.