Technical blog of Adam Neumann, built with Hugo and deployed as static HTML.
- Hugo (extended) — static site generator (
hugo.toml), version pinned in.mise.toml - PaperMod — theme installed as a git submodule under
themes/PaperMod - mise — manages the Hugo version (
.mise.toml)
mise install # install the pinned Hugo version
git submodule update --init # fetch the PaperMod theme./bin/server.sh # local dev server at http://localhost:1313./bin/deploy.sh # build and rsync to dell-onecontent/posts/— blog postscontent/pages/— standalone pages (About, Resources)static/assets/— images and other files served verbatim at/assets/...archetypes/— front matter templates for new contentthemes/PaperMod/— theme (git submodule)public/— build output (not committed)
Posts live in content/posts/. URLs preserve the original scheme via hugo.toml
(/YYYY/MM/DD/<slug>.html), so each post's date and slug front matter determine its URL.
Set draft: true to keep a post out of the build; preview drafts with hugo server -D.