13 lines
232 B
HTML
13 lines
232 B
HTML
{{- define "header" -}}
|
|
{{- partial "header.html" . -}}
|
|
{{- end -}}
|
|
|
|
{{- define "content" -}}
|
|
<div class="post">
|
|
<h1>{{ .Title }}</h1>
|
|
{{ .Content }}
|
|
</div>
|
|
{{- end -}}
|
|
|
|
{{- define "footer" -}}
|
|
{{- end -}}
|