mirror of
https://github.com/dillonzq/LoveIt.git
synced 2024-11-14 19:06:16 +01:00
15 lines
424 B
HTML
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 -}}
|