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" -}}
|
2020-02-14 01:30:33 +08:00
|
|
|
<div class="page single special">
|
2020-02-03 18:38:10 +08:00
|
|
|
{{- /* Title */ -}}
|
2020-02-14 01:30:33 +08:00
|
|
|
<h1 class="single-title animated pulse faster">
|
2020-01-31 18:46:28 +08:00
|
|
|
{{- .Title -}}
|
|
|
|
</h1>
|
2020-02-03 18:38:10 +08:00
|
|
|
|
|
|
|
{{- /* Content */ -}}
|
2020-02-14 01:30:33 +08:00
|
|
|
<div class="content">
|
2020-02-17 21:02:27 +08:00
|
|
|
{{- partial "function/content.html" .Content -}}
|
2019-08-04 21:53:35 +08:00
|
|
|
</div>
|
2019-02-03 12:30:44 +01:00
|
|
|
</div>
|
2020-02-07 00:10:00 +08:00
|
|
|
{{- end -}}
|