20 lines
579 B
HTML
20 lines
579 B
HTML
|
{{ define "main" }}
|
||
|
<article>
|
||
|
<header id="post-header">
|
||
|
<h1>{{ .Title }}</h1>
|
||
|
<div>
|
||
|
Part of the <a href="{{ .Parent.Permalink }}">{{ .Parent.Title }}</a> series
|
||
|
</br>
|
||
|
{{- if isset .Params "date" -}}
|
||
|
{{ if eq .Lastmod .Date }}
|
||
|
<time>{{ .Date | time.Format (i18n "post.created") }}</time>
|
||
|
{{ else }}
|
||
|
<time>{{ .Lastmod | time.Format (i18n "post.updated") }}</time>
|
||
|
{{ end }}
|
||
|
{{- end -}}
|
||
|
</div>
|
||
|
</header>
|
||
|
{{- .Content -}}
|
||
|
</article>
|
||
|
{{ end }}
|