Static technical blog built with Eleventy and deployed to GitHub Pages.
npm install
npm run devEleventy serves the site locally and rebuilds when files change.
Open the local URL printed by Eleventy, usually http://localhost:8080/.
npm run buildThe generated site is written to _site/.
Create Markdown files in src/posts/ with this front matter:
---
layout: post.njk
title: Post title
description: Short summary for listings and feeds.
date: 2026-05-22
tags:
- agents
- workflow
---The workflow in .github/workflows/pages.yml builds the site on pushes to main and deploys _site/ as the Pages artifact.
In the GitHub repository settings, set Pages source to GitHub Actions.
The custom domain is blog.agentswork.de. Configure DNS as a CNAME from blog.agentswork.de to agentsw0rk.github.io.
The initial design reference for this setup informed the Technical Console direction. The production source lives in src/.