hugo-theme-hyde-hyde/layouts/partials/page-single.html
Huy Tran 7e03bb3c64 I want to automatically index elements like figures and tables
This change adds page-based counters for figures and tables using
Hugo .Scratch.

Adds automatic counters for figures and tables
2018-07-24 09:51:40 +10:00

16 lines
No EOL
346 B
HTML

<article>
<header>
<h1>{{ .Title }}</h1>
{{ with .Params.subtitle }}
<span class="post__subtitle">
{{.}}
</span>
{{ end }}
{{ partial "post-meta-before.html" . }}
</header>
<div class="post">
{{ .Content }}
</div>
{{ partial "post-meta-after.html" . }}
{{ partial "post-related.html" . }}
</article>