Files
2026-05-01 09:22:27 +02:00

31 lines
757 B
HTML

{{ define "article" }}
<article class="prose max-w-none dark:prose-invert">
{{ partial "breadcrumbs.html" . }}
{{ with .Title }}
<h1 class="scroll-mt-36">{{ . }}</h1>
{{ end }}
{{ with .Content }}
{{ . }}
{{ end }}
<table>
<thead>
<tr>
<th>Term</th>
<th>Definition</th>
</tr>
</thead>
<tbody>
{{ range $term, $definition := hugo.Data.glossary }}
<tr>
<td class="not-prose">
<a class="-top-16 relative" name="{{ $term | anchorize }}"></a>
{{ $term }}
</td>
<td>{{ $definition | $.RenderString }}</td>
</tr>
{{ end }}
</tbody>
</table>
</article>
{{ end }}