LoveIt/layouts/_default/single.html
2020-02-24 17:00:39 +08:00

15 lines
424 B
HTML

{{- define "title" }}{{ .Title }} | {{ .Site.Title }}{{ end -}}
{{- define "content" -}}
<div class="page single special">
{{- /* Title */ -}}
<h1 class="single-title animated pulse faster">
{{- .Title -}}
</h1>
{{- /* Content */ -}}
<div class="content" id="content">
{{- partial "single/content.html" .Content -}}
</div>
</div>
{{- end -}}