hugo-json-sort/template.html

11 lines
317 B
HTML
Raw Permalink Normal View History

2023-04-01 09:22:13 +02:00
{{ range $section, $content := .Site.Data.data }}
{{ $title := substr $section 3 }}
<span class="title">{{ $title }}</span>
<ul>
{{ range $link_name, $link_href := $content -}}
{{ $link_name := substr $link_name 3 -}}
<li><a href="{{ $link_href }}">{{ $link_name }}</a></li>
{{ end }}
</ul>
{{ end }}