burning.moe/templates/about.page.tmpl
Lilian Jónsdóttir 5882b9d19a template tweaks
about template more resembles links now
2024-01-27 18:57:57 -08:00

31 lines
760 B
Cheetah

{{- template "base" . -}}
{{- define "content" }}
<span id="words">
<h4>celediel</h4>
<span id="bigwords">
{{ index .StringMap "about" }}
</span>
{{- range $key, $value := .LinkMap }}
<h4>{{ $key }}</h4>
{{- range $value }}
<a href="{{ .Href }}" class="links">
{{- if (ne .Icon "") }}
<span class="iconify" data-icon="{{ .Icon }}"></span>
{{ end -}}
{{ .Text }}
</a><br />
{{- end }}
{{- end }}
<br />
<a href="/">
<span class="iconify" data-icon="material-symbols:keyboard-arrow-left"></span>
back
</a>
</span>
{{ end -}}
{{- define "js" }}
<script src="https://code.iconify.design/3/3.1.0/iconify.min.js"></script>
{{ end -}}