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: fb9da3ad0e74a86332a8a1429f5cc0d3173bcddd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{{- 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 -}}