LoveIt/layouts/_default/single.html

12 lines
355 B
HTML
Raw Normal View History

2020-01-31 18:46:28 +08:00
{{- define "title" }}{{ .Title }} | {{ .Site.Title }}{{ end -}}
2019-08-04 21:53:35 +08:00
2020-01-31 18:46:28 +08:00
{{- define "content" -}}
<div class="page single">
2020-01-31 18:46:28 +08:00
<h1 class="post-title animated pulse faster">
{{- .Title -}}
</h1>
2019-08-04 21:53:35 +08:00
<div class="post-content">
{{- partial "hook/content.html" .Content | safeHTML -}}
2019-08-04 21:53:35 +08:00
</div>
2019-02-03 12:30:44 +01:00
</div>
2020-01-31 18:46:28 +08:00
{{- end -}}