mirror of
https://github.com/dillonzq/LoveIt.git
synced 2024-11-14 19:06:16 +01:00
15 lines
415 B
HTML
15 lines
415 B
HTML
{{- define "title" }}{{ .Title }} | {{ .Site.Title }}{{ end -}}
|
|
|
|
{{- define "content" -}}
|
|
<div class="page single">
|
|
{{- /* Title */ -}}
|
|
<h1 class="post-title animated pulse faster">
|
|
{{- .Title -}}
|
|
</h1>
|
|
|
|
{{- /* Content */ -}}
|
|
<div class="post-content">
|
|
{{- partial "hook/content.html" .Content | safeHTML -}}
|
|
</div>
|
|
</div>
|
|
{{- end -}}
|