summaryrefslogtreecommitdiffstats
path: root/layouts/articles/page.html
blob: 5fe8cf4fb0f1c5542d33425beff7ccd27c81c52e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{{ define "main" }}
<h1 class="title">{{ .Title }}</h1>
<p>
	{{- partial "date.html" .Date -}}
	{{- if gt .Lastmod .Date -}}
		&mdash; modified {{ partial "date.html" .Lastmod }}
	{{- end -}}
	<br>
	{{- if .Page.GetTerms "tags" }}
		Tags: {{ partial "terms.html" (dict "taxonomy" "tags" "page" .) -}}.
	{{- end }}
</p>
<hr>
{{ .Content }}
{{ end }}