Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
572 B
HTML
Raw Permalink Normal View History

<ul class="glossary">
{{ range sort $.Site.Data.glossary.entries "term" }}
<li><a href="#{{ anchorize .term }}">{{ .term }}</a></li>
{{ end }}
</ul>
{{ range sort $.Site.Data.glossary.entries "term" }}
<h2 id="{{ anchorize .term }}">{{ .term }}</h2>
<p>{{ .description }}</p>
<p>
{{ $link := .link }}
{{ if hasPrefix $link "/" }}
{{ $link = relref $.Page $link }}
{{ end }}
<a data-track="{{ .term | urlize }}" href="{{ $link }}"><i class="fab fa-readme mr-2"></i>{{ .term }}</a>
</p>
{{ end }}