footer_section.html 703 B

1234567891011121314151617181920212223
  1. <footer class="site-footer">
  2. {{ with .Site.GetPage "privacy.md" }}
  3. <p class="powered-by">
  4. {{ printf "<a href=\"%s\">%s</a>" .Permalink .Title | safeHTML }}
  5. </p>
  6. {{ end }}
  7. <p class="powered-by">
  8. {{ with .Site.Copyright }}{{ . | 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. <span class="float-right" aria-hidden="true">
  13. <a href="#" id="back_to_top">
  14. <span class="button_icon">
  15. <i class="fas fa-chevron-up fa-2x"></i>
  16. </span>
  17. </a>
  18. </span>
  19. </p>
  20. </footer>