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: 4b7dc578e3d732b230f20cc5f62be7f04cc50cd0 (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>
  {{ with .Params.tags }}
    <div>
      <strong>Tags: </strong>
      {{ range . }}
        {{ $href := print ("tags/" | absLangURL) (. | urlize) "/" }}
        <a href="{{ $href }}">{{ . }}</a>
      {{ end }}
    </div>
  {{ end }}
  {{ .Content }}
  {{ $ctx := . }}
  {{ with $.Site.DisqusShortname }}
    {{ template "_internal/disqus.html" $ctx }}
  {{ end }}
{{ end }}