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

single.html « post « layouts - github.com/zwbetz-gh/cayman-hugo-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5374b7dfeb6f64ec989639c1d9bb4ceca310b4e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{{ define "main" }}
  <h1>{{ .Title }}</h1>
  <div>
    {{ $dateFormat := $.Site.Params.dateFormat | default "Jan 2, 2006" }}
    <strong>Publish date: </strong>{{ .PublishDate.Format $dateFormat }}
  </div>
  {{ with .Params.tags }}
    <div>
      <strong>Tags: </strong>
      {{ range . }}
        {{ $href := print ("tags/" | absLangURL) (. | urlize) "/" }}
        <a href="{{ $href }}">{{ . }}</a>
      {{ end }}
    </div>
  {{ end }}
  {{ .Content }}
{{ end }}