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: be81dff2d18ba3e684634660f866a9514bf981c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{{ define "main" }}
  <h1>{{ .Title }}</h1>
  <div>
    {{ $dateFormat := $.Site.Params.dateFormat | default "Jan 2, 2006" }}
    <strong>Publish date: </strong>{{ .PublishDate.Format $dateFormat }}
  </div>
  {{ $tags := slice }}
  {{ with .Params.tags }}
    <div>
      <strong>Tags: </strong>
      {{ range . }}
        {{ $href := print ("tags/" | absLangURL) (. | urlize) "/" }}
        {{ $element := printf "<a href=\"%s\">%s</a>" $href . }}
        {{ $tags = $tags | append $element }}
      {{ end }}
      {{ delimit $tags ", " }}
    </div>
  {{ end }}
  {{ .Content }}
  {{ partial "disqus.html" . }}
{{ end }}