Hello World
Notes on how this blog was created.
Install prerequisites
Install Hugo.
Create a new site
1hugo new site blog
2cd blog
3git submodule add https://github.com/maolonglong/hugo-simple.git themes/hugo-simple
Set up a git repository
1git init
Add a new post
1hugo new content blog/hello-world.md
2cat > content/blog/hello-world.md <<EOF
3+++
4date = '2025-02-01T15:55:21Z'
5title = 'Hello World'
6+++
7
8## Hello World
9
10EOF