Added Footer Partial Support

This commit includes the footer.html partial file in the template so
that it can be overridden to include content at the base of each page
such as copyright notice, bottom menu, etc.
This commit is contained in:
Chris Graham
2019-02-06 16:32:22 -06:00
parent 2bec581dcb
commit 80878b3b24
2 changed files with 2 additions and 0 deletions

View File

@@ -19,6 +19,7 @@
{{ if $paginator.HasNext }}<a href="{{ $paginator.Next.URL }}" class="pagination-older">Older Posts &gt;</a>{{ end }}
</nav>
{{ end -}}
{{ partial "footer.html" . }}
{{ partial "scripts.html" . }}
</body>
</html>

View File

@@ -28,6 +28,7 @@
{{ end }}
{{ partial "home-card.html" . }}
</nav>
{{ partial "footer.html" . }}
{{ partial "scripts.html" . }}
</body>
</html>