site_footer.html 1.1 KB

123456789101112131415161718192021222324252627282930313233343536
  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. Powered by the
  20. <a href="https://sourcethemes.com/academic/" target="_blank" rel="noopener">Academic theme</a> for
  21. <a href="https://gohugo.io" target="_blank" rel="noopener">Hugo</a>.
  22. {{ if not (in (slice "docs" "updates") .Type) }}
  23. <span class="float-right" aria-hidden="true">
  24. <a href="#" class="back-to-top">
  25. <span class="button_icon">
  26. <i class="fas fa-chevron-up fa-2x"></i>
  27. </span>
  28. </a>
  29. </span>
  30. {{ end }}
  31. </p>
  32. </footer>