2020-07-21 12:06:30 +02:00
|
|
|
|
<footer class="footer">
|
2020-10-05 06:34:33 +02:00
|
|
|
|
{{- if .Site.Copyright }}
|
|
|
|
|
<span>{{ .Site.Copyright | markdownify }}</span>
|
|
|
|
|
{{- else }}
|
2020-08-24 22:10:02 +02:00
|
|
|
|
<span>© {{ now.Year }} <a href="{{ "" | absLangURL }}">{{ .Site.Title }}</a></span>
|
2020-10-05 06:34:33 +02:00
|
|
|
|
{{- end }}
|
2020-07-21 12:06:30 +02:00
|
|
|
|
<span>·</span>
|
2020-09-21 12:23:59 +02:00
|
|
|
|
<span>Powered by <a href="https://gohugo.io/" rel="noopener noreferrer" target="_blank">Hugo️️</a>️</span>
|
2020-07-21 12:06:30 +02:00
|
|
|
|
<span>·</span>
|
2020-09-20 09:15:32 +02:00
|
|
|
|
<span>Theme️ <a href="https://git.io/hugopapermod" rel="noopener" target="_blank">PaperMod</a></span>
|
2020-07-21 12:06:30 +02:00
|
|
|
|
</footer>
|
2020-09-15 19:41:06 +02:00
|
|
|
|
<a href="#top" aria-label="go to top" title="Go to Top">
|
2020-07-27 08:34:36 +02:00
|
|
|
|
<button class="top-link" id="top-link" type="button">
|
|
|
|
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 6">
|
|
|
|
|
<path d="M12 6H0l6-6z" /></svg>
|
|
|
|
|
</button>
|
|
|
|
|
</a>
|
2020-10-03 15:01:08 +02:00
|
|
|
|
{{ if in site.Params.mainSections .Type }}
|
|
|
|
|
{{- $highlight := slice (resources.Get "js/highlight.min.js") | resources.Concat "assets/js/highlight.js" | minify | fingerprint -}}
|
2020-07-21 12:06:30 +02:00
|
|
|
|
<script src="{{ $highlight.Permalink }}" integrity="{{ $highlight.Data.Integrity }}"></script>
|
2020-09-23 09:03:19 +02:00
|
|
|
|
<script>hljs.initHighlightingOnLoad();</script>
|
2020-09-23 09:22:32 +02:00
|
|
|
|
{{- end }}
|
2020-07-21 12:06:30 +02:00
|
|
|
|
<script>
|
2020-08-21 17:33:05 +02:00
|
|
|
|
window.onload = function () {
|
|
|
|
|
if (localStorage.getItem("menu-scroll-position")) {
|
|
|
|
|
document.getElementById('menu').scrollLeft = localStorage.getItem("menu-scroll-position");
|
|
|
|
|
}
|
|
|
|
|
}
|
2020-07-24 20:25:44 +02:00
|
|
|
|
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
|
|
|
|
|
anchor.addEventListener("click", function (e) {
|
|
|
|
|
e.preventDefault();
|
|
|
|
|
|
|
|
|
|
document.querySelector(this.getAttribute("href")).scrollIntoView({
|
|
|
|
|
behavior: "smooth"
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
});
|
2020-07-27 08:34:36 +02:00
|
|
|
|
var mybutton = document.getElementById("top-link");
|
|
|
|
|
window.onscroll = function () {
|
|
|
|
|
if (document.body.scrollTop > 800 || document.documentElement.scrollTop > 800) {
|
|
|
|
|
mybutton.style.visibility = "visible";
|
|
|
|
|
mybutton.style.opacity = "1";
|
|
|
|
|
} else {
|
|
|
|
|
mybutton.style.visibility = "hidden";
|
|
|
|
|
mybutton.style.opacity = "0";
|
|
|
|
|
}
|
|
|
|
|
};
|
2020-08-21 17:33:05 +02:00
|
|
|
|
function menu_on_scroll() {
|
|
|
|
|
localStorage.setItem("menu-scroll-position", document.getElementById('menu').scrollLeft);
|
|
|
|
|
}
|
2020-10-04 17:13:24 +02:00
|
|
|
|
</script>
|
2020-10-05 11:03:48 +02:00
|
|
|
|
{{- if (and (not .Site.Params.disableThemeToggle) (not (or (eq .Site.Params.defaultTheme "light") (eq .Site.Params.defaultTheme "dark")))) }}
|
2020-10-04 17:13:24 +02:00
|
|
|
|
<script>
|
|
|
|
|
document.getElementById("theme-toggle").addEventListener("click", () => {
|
|
|
|
|
if (document.body.className.includes("dark")) {
|
|
|
|
|
document.body.classList.remove('dark');
|
|
|
|
|
localStorage.setItem("pref-theme", 'light');
|
|
|
|
|
} else {
|
|
|
|
|
document.body.classList.add('dark');
|
|
|
|
|
localStorage.setItem("pref-theme", 'dark');
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
</script>
|
|
|
|
|
{{- else -}}
|
|
|
|
|
<!-- case where owner disables theme button after deployment, this resets the stored theme -->
|
|
|
|
|
<script>
|
|
|
|
|
localStorage.removeItem("pref-theme");
|
|
|
|
|
</script>
|
2020-10-05 11:03:48 +02:00
|
|
|
|
{{- end }}
|