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: 561bfb0b8be0b13b6d7faca46431e669420c5f72 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{{ define "main" }}
<header>
  <h2>{{ .Title }}</h2>
  <p>{{ .Description }}</p>
</header>
<div class="box">
  {{ with .Params.image }}
  <span class="image featured"><img src="{{ . | relURL }}" alt="" /></span>
  {{ end }}
  {{ .Content }}
</div>
{{ end }}