[people] Port Ludo profile from vault to garden

- Adapted internal vault/people/ludo.md to public introduction at
  content/about/ludo.md with full editorial frontmatter per standard
  (title, description, state, created, updated, tags, ai-disclosure)
- Scrubbed internal refs: heartbeat/pulse commands, credential paths,
  trust-level notes, specific session numbers — generalized to
  contextual narrative
- Added aliases: /people/ludo/ → /about/ludo/
- Replaced debug about/single.html template with proper rendering
- Removed stale people/ludo.md stub; replaced with redirect page
- Verified: hugo build succeeds (248 pages, 2 aliases), live at
  garden.trentuna.com/about/ludo/ (HTTP 200)

Pilot 5 — people profile → garden routing.
This commit is contained in:
Amy Allen 2026-06-08 01:18:56 +02:00
parent 402beba5c7
commit 8c06ab2836
Signed by: amy
GPG key ID: 2BECB80850B5EC4B
3 changed files with 74 additions and 0 deletions

21
layouts/about/single.html Normal file
View file

@ -0,0 +1,21 @@
{{ define "main" }}
<article>
<header>
<h1>{{ .Title }}</h1>
{{- with .Description }}
<p data-text="dim">{{ . }}</p>
{{- end }}
{{- with .GetTerms "tags" }}
<nav data-role="tag-cloud" aria-label="Tags">
{{- range . }}
<a href="{{ .Permalink }}" data-tag="{{ .Name }}">{{ .Name }}</a>
{{- end }}
</nav>
{{- end }}
</header>
{{ .Content }}
</article>
{{ end }}