27 lines
872 B
HTML
Raw Permalink Normal View History

{{- if not (.Param "hideFooter") }}
2020-07-21 15:36:30 +05:30
<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
2022-08-31 20:57:32 -05:00
<a href="https://gohugo.io/" rel="noopener noreferrer">Hugo</a> &
<a href="https://github.com/Wonderfall/hugo-WonderMod/" rel="noopener">WonderMod</a>
</span>
2020-07-21 15:36:30 +05:30
</footer>
{{- end }}
2021-03-30 18:07:36 +05:30
{{- 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 18:07:36 +05:30
{{- partial "extend_footer.html" . }}
2021-03-30 18:07:36 +05:30
2022-08-31 20:57:32 -05:00
{{- partial "script.html" . }}