Static sites generators - andyceo/documentation GitHub Wiki
Showcase: https://github.com/getpelican/pelican/wiki/Powered-by-Pelican
There is showcase of many Jekyll-powered sites: https://jekyllrb.com/showcase/
Another one: http://planetjekyll.github.io/showcase/
Showcase for Hugo: https://gohugo.io/showcase/
Useful links:
Run server:
hugo server
And open http://localhost:1313/ in your browser.
You can also use:
hugo server -F -D --disableFastRender
where:
-
-F
: show items to be published in the future (like blog posts with dates in the future) -
-D
: show drafts -
--disableFastRender
: disable lazy-load on page request, generate all content right away
Generate static files to /tmp/blog-public
, ready to be hosted with Nginx for example:
hugo --config="/home/user/blog/config.toml" -s /home/user/blog/ -d /tmp/blog-public
export HUGO_RELEASE="0.51"
sudo wget -P /usr/local/bin https://github.com/gohugoio/hugo/releases/download/v${HUGO_RELEASE}/hugo_${HUGO_RELEASE}_Linux-64bit.tar.gz
cd /usr/local/bin
sudo tar xf hugo_${HUGO_RELEASE}_Linux-64bit.tar.gz
sudo rm hugo_${HUGO_RELEASE}_Linux-64bit.tar.gz
Showacase for Hyde: https://github.com/hyde/hyde#examples