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