7e03bb3c64
This change adds page-based counters for figures and tables using Hugo .Scratch. Adds automatic counters for figures and tables
17 lines
448 B
HTML
17 lines
448 B
HTML
{{ define "header" -}}
|
|
{{ partial "page-variables-init.html" . }}
|
|
{{ partial "header.html" . }}
|
|
{{- end -}}
|
|
|
|
{{ define "content" -}}
|
|
{{ partial "page-single.html" . }}
|
|
{{- end -}}
|
|
|
|
{{ define "footer" -}}
|
|
<div class="container content">
|
|
{{- partial "highlight-js.html" . -}}
|
|
{{- partial "commenting.html" . -}}
|
|
</div>
|
|
{{ partial "footer.html" . }}
|
|
{{ partial "page-variables-deinit.html" . }}
|
|
{{- end -}}
|