Lilian Jónsdóttir
3dbd5a86e2
- split many parts of RenderTemplate into their own functions so they can be used individually - move web apps into their own page, add projects page, both generated by executing links.tmpl with their own yaml data - handle / specially, generating LinkMap from Handlers
29 lines
656 B
Cheetah
29 lines
656 B
Cheetah
{{- template "base" . -}}
|
|
|
|
{{- define "content" }}
|
|
<span id="words">
|
|
<h4>celediel</h4>
|
|
<span id="bigwords">
|
|
{{ index .StringMap "about" }}
|
|
</span>
|
|
|
|
<!-- personal links -->
|
|
<h4>links</h4>
|
|
{{- range (index .LinkMap "Personal") }}
|
|
<a href="{{ .Href }}">
|
|
<span class="iconify" data-icon="{{ .Icon }}"></span>
|
|
{{ .Text }}
|
|
</a><br />
|
|
{{ 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 -}}
|