site_footer.html 773 B

12345678910111213141516171819202122232425
  1. <footer class="site-footer">
  2. {{ with site.GetPage "privacy.md" }}
  3. <p class="powered-by">
  4. {{ printf "<a href=\"%s\">%s</a>" .RelPermalink .Title | safeHTML }}
  5. </p>
  6. {{ end }}
  7. <p class="powered-by">
  8. {{ with site.Copyright }}{{ replace . "{year}" now.Year | markdownify}} &middot; {{ end }}
  9. Powered by the
  10. <a href="https://sourcethemes.com/academic/" target="_blank" rel="noopener">Academic theme</a> for
  11. <a href="https://gohugo.io" target="_blank" rel="noopener">Hugo</a>.
  12. {{ if ne .Type "docs" }}
  13. <span class="float-right" aria-hidden="true">
  14. <a href="#" id="back_to_top">
  15. <span class="button_icon">
  16. <i class="fas fa-chevron-up fa-2x"></i>
  17. </span>
  18. </a>
  19. </span>
  20. {{ end }}
  21. </p>
  22. </footer>