site_footer.html 1.2 KB

12345678910111213141516171819202122232425262728293031
  1. <footer class="site-footer">
  2. {{ if or (site.GetPage "terms.md") (site.GetPage "privacy.md") }}
  3. <p class="powered-by">
  4. {{ with site.GetPage "privacy.md" }}
  5. {{ printf "<a href=\"%s\">%s</a>" .RelPermalink .Title | safeHTML }}
  6. {{ end }}
  7. {{ with site.GetPage "terms.md" }}
  8. {{ if site.GetPage "privacy.md" }} &middot; {{ end }}
  9. {{ printf "<a href=\"%s\">%s</a>" .RelPermalink .Title | safeHTML }}
  10. {{ end }}
  11. </p>
  12. {{ end }}
  13. <p class="powered-by">
  14. {{ with site.Copyright }}{{ replace . "{year}" now.Year | markdownify}}{{ end }}
  15. </p>
  16. {{/* Display copyright license. */}}
  17. {{ partial "site_footer_license" . }}
  18. <p class="powered-by">
  19. {{ $is_sponsor := site.Params.i_am_a_sponsor | default false }}
  20. {{ $hide_published_with_footer := site.Params.power_ups.hide_published_with | default true }}
  21. {{ if not (and $is_sponsor $hide_published_with_footer) }}
  22. Published with
  23. <a href="https://wowchemy.com/?utm_campaign=poweredby" target="_blank" rel="noopener">Wowchemy</a> —
  24. the free, <a href="https://github.com/wowchemy/wowchemy-hugo-modules" target="_blank" rel="noopener">
  25. open source</a> website builder that empowers creators.
  26. {{ end }}
  27. </p>
  28. </footer>