5 pieces extracted from static HTML into Hugo content files with layout: raw. Each gets the garden nav bar, footer, and garden.css while preserving custom CSS/JS (Web Audio, SVG, interactive elements). Now navigable: visitor can browse from homepage to piece and back. Static copies remain in static/expressive/ as fallback. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
12 lines
216 B
HTML
12 lines
216 B
HTML
{{ define "main" }}
|
|
<article>
|
|
<header>
|
|
<hgroup>
|
|
<h1>{{ .Title }}</h1>
|
|
{{ with .Params.form }}<p data-text="dim">{{ . }}</p>{{ end }}
|
|
</hgroup>
|
|
</header>
|
|
|
|
{{ .Content }}
|
|
</article>
|
|
{{ end }}
|