Simple site layout design

This commit is contained in:
2025-06-05 21:52:01 -06:00
parent 63861e1721
commit 94950041f6
62 changed files with 618 additions and 140 deletions

View File

@ -6,5 +6,21 @@
<time datetime="{{ $dateMachine }}">{{ $dateHuman }}</time>
{{ .Content }}
{{ partial "terms.html" (dict "taxonomy" "tags" "page" .) }}
<section>
<ul id="taxonomies">
{{ range $taxonomyname, $taxonomy := .Site.Taxonomies }}
<li>{{ $taxonomyname | strings.FirstUpper }}
<!-- <li><a href="{{ "/" | relLangURL}}{{ $taxonomyname | urlize }}">{{ $taxonomyname }}</a> -->
<ul>
{{ range $key, $value := $taxonomy }}
<li><a href="{{ "/" | relLangURL}}{{ $taxonomyname | urlize }}{{ "/" | relLangURL}}{{ $key | urlize }}">{{ $key }}</a></li>
{{ end }}
</ul>
</li>
{{ end }}
</ul>
</section>
{{ end }}