mirror of
https://github.com/docker/docs.git
synced 2026-06-19 07:35:16 +00:00
33226cf897
Signed-off-by: David Karlsson <35727626+dvdksn@users.noreply.github.com>
34 lines
815 B
HTML
34 lines
815 B
HTML
{{ define "main" }}
|
|
{{ partial "breadcrumbs.html" . }}
|
|
<article class="prose max-w-none dark:prose-invert">
|
|
{{ 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 := site.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 }}
|
|
|
|
{{ define "right" }}
|
|
{{ partial "aside.html" . }}
|
|
{{ end }} |