publish posts
Fix readme and language
Add home page content
This is a sandbox to play with Hugo framework.
See Hugo documentation and Congo theme documentation.
Install the following tools.
Create a new project.
hugo new site hugo-sandbox
cd hugo-sandbox
git init
Add a theme (Congo theme).
git submodule add -b stable https://github.com/jpanther/congo.git themes/congo
echo "theme = 'congo'" >> hugo.toml
Update theme.
git submodule update --remote --merge
Add content.
hugo new content posts/page.md
Commit and push changes with git.
Run server (-D option include draft content).
hugo server
hugo server -D
You can find the website locally at http://localhost:1313.
Publish on sourcehut pages.
hugo
hut pages publish -d nora.srht.site public
You can find the website at https://nora.srht.site.