Move partials under paige directory

This commit is contained in:
Will Faught
2022-12-29 22:30:30 -08:00
parent 2340651c82
commit 2ece967314
34 changed files with 56 additions and 56 deletions

View File

@@ -1,6 +1,6 @@
{{ define "main" }}
<article>
{{ partial "paige-metadata.html" . }}
{{ 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.html" . }}
{{ partial "paige-content.html" . }}
{{ partial "paige-social.html" . }}
{{ partial "paige/toc.html" . }}
{{ partial "paige/content.html" . }}
{{ partial "paige/social.html" . }}
</article>
{{ end }}