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

single.html « _default « layouts - github.com/dewittn/hugo-html5up-alpha.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0b95cb413bd568c3c7333ea248b8d195984bb902 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{{ define "main" }}
  <header>
    <h2>{{ .Title }}</h2>
    <p>{{ .Date.Format "Jan 2, 2006" }}</p>
  </header>
  <div class="box">
    {{ with .Params.image }}
    <span class="image featured"><img src="{{ . | relURL }}" alt="" /></span>
    {{ end }}
    {{ .Content }}
  </div>
  {{ if .Site.DisqusShortname }}
  <div class="box">
    {{ template "_internal/disqus.html" . }}
  </div>
  {{ end }}
{{ end }}