website/layouts/index.html
2023-01-15 01:03:14 +01:00

17 lines
516 B
HTML

{{- define "stylesheet" -}}
{{- $style := resources.Get "/scss/home.scss" | resources.ToCSS (dict "outputStyle" "compressed") -}}
<link rel="preload stylesheet" as="style" href="{{ $style.Permalink }}" type="text/css" media="screen" />
{{- end -}}
{{- define "header" }}
<header id="introduction" class="global-header">
<h1>{{ i18n "introduction-heading" }}</h1>
<p>{{ i18n "introduction-sub" }}</p>
</header>
{{ end }}
{{- define "main" }}
<main>
{{ .Content }}
</main>
{{- end }}