footer_container.html 881 B

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