blob: c5e5c54f2751718081e120b31b48be0b4b8f1664 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
{{ define "main"}}
<main aria-role="main">
<div class="content is-normal mx-3">
<figure class="image ">
{{ with .Resources.GetMatch "header.jpg" }}
<img src="data:{{ .MediaType }};base64,{{ .Content | base64Encode }}">
{{ end }}
</figure>
<p class="title is-3"><i class="fas fa-file"></i> {{.Page.Title}}</p>
<p class="subtitle is-4">{{.Page.Description}}</p>
{{ $dateFormat := .Site.Params.dateFormat | default "January 2, 2006"}}
<p class="date">Published on {{ .PublishDate.Format $dateFormat }}{{ if ne .Lastmod .PublishDate }}, last updated on {{ .Lastmod.Format $dateFormat }}
{{ end }}
</p>
{{ .Content }}
</div>
</main>
{{ end }}
|