Welcome to mirror list, hosted at ThFree Co, Russian Federation.

single.html « post « layouts - github.com/zwbetz-gh/minimal-bootstrap-hugo-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d59e4996b37dc64bc053a854e01d00e0a4d3647a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{{- define "main" -}}

<h1>{{ .Title | markdownify }}</h1>
<p>
  <small class="text-secondary">
  {{ $customDateFormat := "January 2, 2006" }}
  {{ with .Site.Params.customDateFormat }}{{ $customDateFormat = . }}{{ end }}
  {{ .PublishDate.Format $customDateFormat }}{{ if gt .Lastmod .PublishDate }}, updated {{ .Lastmod.Format $customDateFormat }}{{ end }}
  </small>
  {{ partial "tags" . }} {{ partial "categories" . }}
</p>
{{ .Content }}

{{- end -}}