site_footer.html 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637
  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. {{ $is_sponsor := site.Params.i_am_a_sponsor | default false }}
  20. {{ $hide_published_with_footer := site.Params.power_ups.hide_published_with | default true }}
  21. {{ if not (and $is_sponsor $hide_published_with_footer) }}
  22. {{ $default := "Published with {wowchemy} — the free, {repo_link}open source{/repo_link} website builder that empowers creators." }}
  23. {{ $i18n_published_with := i18n "published_with" | default $default }}
  24. {{ if not (findRE "{wowchemy}" $i18n_published_with) }}
  25. {{ warnf "Please attribute Wowchemy using `{wowchemy}` in the `published_with` text." }}
  26. {{ $i18n_published_with = $default }}
  27. {{ end }}
  28. {{ $i18n_published_with = replace $i18n_published_with "{wowchemy}" "<a href=\"https://wowchemy.com/?utm_campaign=poweredby\" target=\"_blank\" rel=\"noopener\">Wowchemy</a>" | safeHTML }}
  29. {{ $i18n_published_with = replace $i18n_published_with "{repo_link}" "<a href=\"https://github.com/wowchemy/wowchemy-hugo-modules\" target=\"_blank\" rel=\"noopener\">" | safeHTML }}
  30. {{ $i18n_published_with = replace $i18n_published_with "{/repo_link}" "</a>" | safeHTML }}
  31. {{ $i18n_published_with | markdownify | emojify }}
  32. {{ end }}
  33. </p>
  34. </footer>