2020-08-31 15:40:11 +02:00
|
|
|
{{ define "main" }}
|
|
|
|
{{ if eq .Type "blog" }}{{ if not .Params.menu }}
|
|
|
|
<h1>{{ .Title }}</h1>
|
|
|
|
<p>
|
|
|
|
<i>
|
|
|
|
<time datetime='{{ .Date.Format "2006-01-02" }}' pubdate>
|
2021-04-05 23:47:59 -07:00
|
|
|
{{ .Date.Format (default "02 Jan, 2006" .Site.Params.dateFormat) }}
|
2020-08-31 15:40:11 +02:00
|
|
|
</time>
|
|
|
|
</i>
|
|
|
|
</p>
|
|
|
|
{{ end }}{{ end }}
|
|
|
|
<content>
|
|
|
|
{{ .Content }}
|
|
|
|
</content>
|
|
|
|
<p>
|
|
|
|
{{ range (.GetTerms "tags") }}
|
|
|
|
<a href="{{ .Permalink }}">#{{ .LinkTitle }}</a>
|
|
|
|
{{ end }}
|
|
|
|
</p>
|
|
|
|
{{ end }}
|