This commit is contained in:
delete 2026-06-10 20:51:17 +03:00
commit b15b95781c
108 changed files with 14802 additions and 0 deletions

View file

@ -0,0 +1,16 @@
{{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}}