WIP: start page with header

This commit is contained in:
Hoernschen 2023-12-24 00:01:53 +01:00
parent 9d834470a6
commit 06b0b4d643
Signed by: hoernschen
GPG key ID: 37591FAF4E6D3462
18 changed files with 1683 additions and 9 deletions

View file

@ -0,0 +1,13 @@
<!--
type: string - default filled
text: string
icon: string (optional)
url: string
-->
{{ $outlined := "outlined"}}
<a class="{{if eq .type $outlined}} button-outlined {{else}} button-filled {{end}}" href="{{ .url }}">
{{ with .icon }}
<i class="icon-{{ . }}"></i>
{{ end }}
{{ .text }}
</a>