LoveIt/layouts/_default/single.html

15 lines
413 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 "function/content.html" .Content -}}
</div>
</div>
{{- end -}}