hugo-theme-wondermod/layouts/partials/footer.html

26 lines
903 B
HTML
Raw Normal View History

{{- if not (.Param "hideFooter") }}
2020-07-21 12:06:30 +02:00
<footer class="footer">
{{- if site.Copyright }}
<span>{{ site.Copyright | markdownify }}</span>
{{- else }}
<span>&copy; {{ now.Year }} <a href="{{ "" | absLangURL }}">{{ site.Title }}</a></span>
{{- end }}
<span>
2022-07-24 01:39:42 +02:00
- Powered by
<a href="https://gohugo.io/" rel="noopener noreferrer" target="_blank">Hugo</a> &
2022-07-24 01:39:42 +02:00
<a href="https://github.com/Wonderfall/hugo-WonderMod/" rel="noopener" target="_blank">WonderMod</a>
</span>
2020-07-21 12:06:30 +02:00
</footer>
{{- end }}
2021-03-30 14:37:36 +02:00
{{- if (not site.Params.disableScrollToTop) }}
<a href="#top" aria-label="go to top" title="Go to Top (Alt + G)" class="top-link" id="top-link" accesskey="g">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 6" fill="currentColor">
<path d="M12 6H0l6-6z" />
</svg>
</a>
{{- end }}
2021-03-30 14:37:36 +02:00
{{- partial "extend_footer.html" . }}
2021-03-30 14:37:36 +02:00
2022-07-22 00:00:36 +02:00
{{- partial "script.html" . }}