simon.constans.io/themes/hugo-winston-theme/layouts/_default/single.html

14 lines
329 B
HTML

{{ define "body_classes" }}page-default-single{{ end }}
{{ define "main" }}
<div class="intro">
<h1>{{ .Title }}{{ if .Site.Params.addDot }}<span class="dot">.</span>{{ end }}</h1>
{{ if .Params.image }}
<img src="{{ .Params.image | relURL }}" />
{{ end }}
</div>
<div class="content">
{{ .Content }}
</div>
{{ end }}