website/layouts/_default/list.html
Vri 289161b91d
Some checks failed
ci/woodpecker/push/hugo-build Pipeline failed
fix: update syntax
2025-02-18 19:52:40 +01:00

16 lines
No EOL
497 B
HTML

{{- define "stylesheet" -}}
{{- $style := resources.Get "/scss/default.scss" | css.Sass (dict "outputStyle" "compressed") -}}
<link rel="preload stylesheet" as="style" href="{{ $style.Permalink }}" type="text/css" media="screen" />
{{- end -}}
{{- define "main" }}
<main>
<h1 class="title">{{ .Title }}</h1>
<p>{{ .Content }}</p>
{{- range .Pages }}
<p> <a href="{{ .Permalink }}">{{ .Title }}</a> <span>{{ .Date | time.Format ":date_long" }}</span> </p>
{{- end }}
</main>
{{- end }}