update_server/web/templates/pages/home.gohtml
2026-06-10 20:51:17 +03:00

16 lines
352 B
Text

{{define "content"}}
<section class="hero">
<p class="eyebrow">{{.Eyebrow}}</p>
<h1>{{.Heading}}</h1>
<p class="lede">{{.Description}}</p>
</section>
<section class="link-grid">
{{range .Links}}
<article class="link-card">
<h2><a href="{{.Href}}">{{.Label}}</a></h2>
<p>{{.Description}}</p>
</article>
{{end}}
</section>
{{end}}