35 lines
1,003 B
HTML
35 lines
1,003 B
HTML
{{ define "main" }}
|
|
{{ if not .Params.menu }}
|
|
<h1>{{ .Title }}</h1>
|
|
<p class="byline">
|
|
<time datetime='{{ .Date.Format "2006-01-02" }}' pubdate>
|
|
{{ .Date.Format (default "2006-01-02" .Site.Params.dateFormat) }}
|
|
</time>
|
|
{{ with .Params.author }}· {{.}}{{ end }}
|
|
{{ if and (.Site.Params.showContentTime) (not .Params.hideContentTime) }}
|
|
{{ if .Params.contentTime }}
|
|
{{ with .Params.contentTime }}· {{ printf "%d min" . }}{{end}}
|
|
{{ else }}
|
|
{{ with .ReadingTime }}· {{ printf "%d min" . }}{{end}}
|
|
{{ end }}
|
|
{{ end }}
|
|
</p>
|
|
{{ end }}
|
|
<content>
|
|
{{ .Content }}
|
|
</content>
|
|
<p>
|
|
{{ range (.GetTerms "tags") }}
|
|
<a class="blog-tags" href="{{ .RelPermalink }}">#{{ lower .LinkTitle }}</a>
|
|
{{ end }}
|
|
</p>
|
|
{{ if not .Params.hideReply }}
|
|
{{ with .Site.Params.author.email }}
|
|
<p>
|
|
<a href='mailto:{{ . }}?subject={{ i18n "email-subject" }}"{{ default $.Site.Title $.Page.Title }}"'>
|
|
{{ i18n "email-reply" }} ↪
|
|
</a>
|
|
</p>
|
|
{{ end }}
|
|
{{ end }}
|
|
{{ end }}
|