Workflow
Editing normanli.net — Publishing Workflow
Quick reference for maintaining the blog at normanli.net.
Tech stack
- Static site: Hugo (v0.68.3 locally, newer on Cloudflare)
- Hosting: Cloudflare Pages (auto-deploys from GitHub)
- Repo:
normanli33/blog.normanli.net(master branch) - Theme: Custom (ChatGPT Codex design, self-hosted fonts, warm terracotta palette)
Content sections
| Section | URL | What goes there |
|---|---|---|
analysis/ |
/analysis/... |
Long-form deep dives |
projects/ |
/projects/... |
Project case studies |
knowledge/ |
/knowledge/... |
Short reference concepts |
study/ |
/study/... |
Course / personal study notes |
about/ |
/about/ |
Single about page |
Quick edit (fix a typo)
cd ~/blog.normanli.net
vim content/analysis/forecast-bias.md # edit the file
hugo --minify # verify it builds
git add -A && git commit -m "Fix typo" && git push
Cloudflare auto-deploys in ~30 seconds.
Read more →