Hugo

Hugo is a Web Framework writtin in Golang

Installation

Hugo Releases and latest Get extended_withdeploy and amd64 package

cd /tmp
wget https://github.com/gohugoio/hugo/releases/download/v0.138.0/hugo_extended_withdeploy_0.138.0_linux-amd64.tar.gz
tar -xvf hugo_extended_withdeploy_0.138.0_linux-amd64.tar.gz
sudo dpkg -i hugo_0.123.3_linux-amd64.deb 

Getting started

initialize new website into existing git repo

mkdir myDir
hugo new site myDir --force -f toml

Run local dev Server

hugo server --bind 192.168.1.157 --baseURL http://optiplex/

Index Page

Overwrite theme index page with layout/index.html

Last updated