You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# install go
wget https://go.dev/dl/go1.17.5.linux-amd64.tar.gz
tar xzf go1.17.5.linux-amd64.tar.gz
mv go /usr/local
echo 'export PATH=$PATH:/usr/local/go/bin' >> .bashrc
. .bashrc
# hugo extended
wget https://github.com/gohugoio/hugo/releases/download/v0.91.1/hugo_extended_0.91.1_Linux-64bit.deb
sudo dpkg -i hugo_extended_0.91.1_Linux-64bit.deb
Create new site and install theme
mkdir mysite
cd mysite
hugo new site . --force
# clone theme into themes dir
git clone https://github.com/CaiJimmy/hugo-theme-stack themes/hugo-theme-stack
cp themes/hugo-theme-stack/exampleSite/config.yaml .
rm config.toml
# copy content (from example within the theme)
cp -r themes/hugo-theme-stack/exampleSite/content/* content/
# build
hugo
# start hugo server on http://0.0.0.0:1313 (with drafts)# hugo server --buildDrafts --baseURL "http://0.0.0.0" --bind="0.0.0.0"
hugo server