website/layouts/errorpages/list.html

11 lines
357 B
HTML
Raw Normal View History

2023-01-15 01:03:14 +01:00
{{- define "stylesheet" -}}
2025-02-18 19:52:40 +01:00
{{- $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" />
2023-01-15 01:03:14 +01:00
{{- end -}}
{{- define "main" }}
2025-02-18 19:52:40 +01:00
<main>
<h2>{{ .Params.heading }}</h2>
<p>{{ .Params.subheading}}</p>
</main>
{{- end }}