LoveIt/layouts/_default/single.html
2020-02-14 01:30:33 +08:00

15 lines
420 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">
{{- partial "hook/content.html" .Content | safeHTML -}}
</div>
</div>
{{- end -}}