Files
paige-hugo/layouts/partials/paige/footer.html
2023-09-24 19:41:20 -07:00

20 lines
773 B
HTML

{{ $page := . }}
<footer class="mb-3" id="paige-footer">
{{ if templates.Exists "partials/paige/footer-first.html" }}
{{ partial "paige/footer-first.html" . }}
{{ end }}
{{ with site.Copyright | markdownify }}
<p class="mb-0 text-center text-secondary" id="paige-copyright">{{ . }}</p>
{{ end }}
<p class="mb-0 text-center" id="paige-credit">
<a class="link-secondary text-decoration-none" href="https://github.com/willfaught/paige" {{ with partial "paige/target.html" (dict "page" $page "url" "https://github.com/willfaught/paige") }} target="{{ . }}" {{ end }}>Paige Theme</a>
</p>
{{ if templates.Exists "partials/paige/footer-last.html" }}
{{ partial "paige/footer-last.html" . }}
{{ end }}
</footer>