Add missing .html extension to partials

This commit is contained in:
Will Faught
2022-12-31 21:30:33 -08:00
parent f26b35ff0f
commit 016a9f3e57
17 changed files with 44 additions and 44 deletions

View File

@@ -1,6 +1,6 @@
{{ define "main" }}
<article>
{{ partial "paige/metadata" . }}
{{ partial "paige/metadata.html" . }}
<section>
{{ with .Params.stretch }}
<div class="mb-3 mw-100 rounded-4 shadow" style="background-image: url('{{ relLangURL . }}'); background-position: center; background-size: cover; height: 20rem"></div>
@@ -23,8 +23,8 @@
</div>
{{ end }}
</section>
{{ partial "paige/toc" . }}
{{ partial "paige/content" . }}
{{ partial "paige/social" . }}
{{ partial "paige/toc.html" . }}
{{ partial "paige/content.html" . }}
{{ partial "paige/social.html" . }}
</article>
{{ end }}