Personal site and blog. Hugo + hugo-clarity, deployed to GitHub Pages.
Live at r055le.github.io.
- Writing on DevSecOps, SRE, platform engineering, and the invisible work that keeps production running.
- Career notes and career-adjacent posts — layoffs, portfolio thinking, the visibility problem.
- Occasional deep dives tied to the labs listed on my GitHub profile.
| Static site generator | Hugo (extended, pinned to v0.160.1) |
| Theme | hugo-clarity (git submodule) |
| Hosting | GitHub Pages |
| CI | GitHub Actions — see .github/workflows/deploy.yml |
Deploys automatically on push to main.
git clone --recurse-submodules https://github.com/R055LE/r055le.github.io.git
cd r055le.github.io
hugo server -D-D includes drafts. Site serves at http://localhost:1313.
If you forgot --recurse-submodules:
git submodule update --init --recursivecontent/
_index.md landing page
about.md
projects.md
post/ published posts
drafts/ work-in-progress, not committed to content/
config/_default/ Hugo configuration
assets/ theme overrides and custom assets
static/ images, files served as-is
- Draft in
drafts/or directly incontent/post/withdraft: truein frontmatter. - Preview locally with
hugo server -D. - Flip
draft: false, commit, push — Actions builds and deploys.
Content (posts, images) © R055LE, all rights reserved. Site configuration and theme overrides are MIT unless noted otherwise.