15 lines
349 B
HTML
15 lines
349 B
HTML
{{ define "header" -}}
|
|
{{ partial "header.html" . }}
|
|
{{- end -}}
|
|
|
|
{{ define "content" -}}
|
|
{{ partial "page_single.html" . }}
|
|
{{- end -}}
|
|
|
|
{{ define "footer" -}}
|
|
<div class="footer content">
|
|
{{- partial "highlight-js.html" . -}}
|
|
{{- partial "commenting.html" . -}}
|
|
</div>
|
|
{{ partial "footer.html" . }}
|
|
{{- end -}}
|