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: d8119a13deeaaa584996f5bd97523d07fb7b3504 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{{ define "main" }}
  <header>
    <h2>{{ .Title }}</h2>
    <p>{{ .Date.Format "Jan 2, 2006" }}</p>
  </header>
  <div class="box">
    {{ with partial "bannerURL" . }}
    <span class="image featured"><img src="{{ . }}" alt="" /></span>
    {{ end }}
    {{ .Content }}
    {{ partial "tags" . }}
  </div>
  {{ if .Site.DisqusShortname }}
  <div class="box">
    {{ template "_internal/disqus.html" . }}
  </div>
  {{ end }}
{{ end }}