site_footer.html 1.0 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}} &middot; {{ end }}
  15. Powered by the
  16. <a href="https://sourcethemes.com/academic/" target="_blank" rel="noopener">Academic theme</a> for
  17. <a href="https://gohugo.io" target="_blank" rel="noopener">Hugo</a>.
  18. {{ if ne .Type "docs" }}
  19. <span class="float-right" aria-hidden="true">
  20. <a href="#" id="back_to_top">
  21. <span class="button_icon">
  22. <i class="fas fa-chevron-up fa-2x"></i>
  23. </span>
  24. </a>
  25. </span>
  26. {{ end }}
  27. </p>
  28. </footer>