site_footer.html 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637
  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. {{ if not site.Params.i_am_a_sponsor }}
  20. Published with
  21. <a href="https://wowchemy.com" target="_blank" rel="noopener">Wowchemy Website Builder</a>
  22. {{ end }}
  23. {{ if not (in (slice "book" "docs" "updates") .Type) }}
  24. <span class="float-right" aria-hidden="true">
  25. <a href="#" class="back-to-top">
  26. <span class="button_icon">
  27. <i class="fas fa-chevron-up fa-2x"></i>
  28. </span>
  29. </a>
  30. </span>
  31. {{ end }}
  32. </p>
  33. </footer>