31 lines
1.1 KiB
HTML
31 lines
1.1 KiB
HTML
{{- define "stylesheet" -}}
|
|
{{- $style := resources.Get "/scss/blog.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="blog-header">
|
|
<h1 class="title">{{ .Title }}</h1>
|
|
<p>
|
|
<span
|
|
id="blog-post-published"
|
|
title="{{ i18n "blog-post-published" }} {{ .Date | time.Format "2. January 2006, 15:04 MST" }}"
|
|
>
|
|
{{ .Date | time.Format "2. January 2006" }}
|
|
</span>
|
|
<span
|
|
id="blog-post-updated"
|
|
title="{{ i18n "blog-post-updated" }} {{ .Lastmod | time.Format "2. January 2006, 15:04 MST" }}"
|
|
>
|
|
{{ i18n "blog-post-updated" }} {{ .Lastmod | time.Format "2. January 2006" }}
|
|
</span>
|
|
</p>
|
|
</header>
|
|
{{ end }}
|
|
|
|
{{- define "main" }}
|
|
<main>
|
|
{{ .Content -}}
|
|
{{ partial "moreposts.html" . }}
|
|
</main>
|
|
{{- end }}
|