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-10-30 13:01:52 +01: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-10-30 13:01:52 +01: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>
|
2021-03-25 06:30:22 +01:00
|
|
|
{{- if (not .Site.Params.disableScrollToTop) }}
|
2020-12-29 12:33:22 +01:00
|
|
|
<a href="#top" aria-label="go to top" title="Go to Top (Alt + G)">
|
|
|
|
<button class="top-link" id="top-link" type="button" accesskey="g">
|
2021-01-11 16:31:50 +01:00
|
|
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 6" fill="currentColor">
|
2020-12-24 08:17:42 +01:00
|
|
|
<path d="M12 6H0l6-6z" />
|
|
|
|
</svg>
|
|
|
|
</button>
|
|
|
|
</a>
|
2021-03-25 06:30:22 +01:00
|
|
|
{{- end }}
|
2020-10-18 18:22:22 +02:00
|
|
|
{{- partial "extend_footer.html" . -}}
|
2020-12-29 11:33:49 +01:00
|
|
|
{{- $isHLJSdisabled := (.Site.Params.assets.disableHLJS | default .Params.disableHLJS ) }}
|
2021-01-15 18:51:13 +01:00
|
|
|
{{- if (and (eq .Kind "page") (ne .Layout "archives") (ne .Layout "search") (not $isHLJSdisabled)) }}
|
2020-12-01 14:22:06 +01:00
|
|
|
{{- if not .Site.Params.assets.disableFingerprinting }}
|
2021-01-26 06:22:41 +01:00
|
|
|
{{- $highlight := slice (resources.Get "js/highlight.min.js") | resources.Concat "assets/js/highlight.js" | minify | fingerprint }}
|
2021-01-20 14:41:06 +01:00
|
|
|
<script defer src="{{ $highlight.RelPermalink }}" integrity="{{ $highlight.Data.Integrity }}"
|
2020-11-17 11:14:16 +01:00
|
|
|
onload="hljs.initHighlightingOnLoad();"></script>
|
2020-12-01 14:22:06 +01:00
|
|
|
{{- else}}
|
|
|
|
{{- $highlight := slice (resources.Get "js/highlight.min.js") | resources.Concat "assets/js/highlight.js" | minify }}
|
2021-01-20 14:41:06 +01:00
|
|
|
<script defer src="{{ $highlight.RelPermalink }}" onload="hljs.initHighlightingOnLoad();"></script>
|
2020-12-01 14:22:06 +01:00
|
|
|
{{- end}}
|
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");
|
|
|
|
}
|
|
|
|
}
|
2021-03-25 06:30:22 +01:00
|
|
|
|
|
|
|
function menu_on_scroll() {
|
|
|
|
localStorage.setItem("menu-scroll-position", document.getElementById('menu').scrollLeft);
|
|
|
|
}
|
|
|
|
|
2020-12-24 08:17:42 +01:00
|
|
|
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
|
|
|
|
anchor.addEventListener("click", function (e) {
|
|
|
|
e.preventDefault();
|
|
|
|
var id = this.getAttribute("href").substr(1);
|
2021-01-13 18:49:35 +01:00
|
|
|
if (!window.matchMedia('(prefers-reduced-motion: reduce)').matches) {
|
|
|
|
document.querySelector(`[id='${decodeURIComponent(id)}']`).scrollIntoView({
|
|
|
|
behavior: "smooth"
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
document.querySelector(`[id='${decodeURIComponent(id)}']`).scrollIntoView();
|
|
|
|
}
|
2020-12-24 08:17:42 +01:00
|
|
|
if (id === "top") {
|
|
|
|
history.replaceState(null, null, " ");
|
|
|
|
} else {
|
2021-01-25 17:18:15 +01:00
|
|
|
history.pushState(null, null, `#${id}`);
|
2020-12-24 08:17:42 +01:00
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
2021-03-25 06:30:22 +01:00
|
|
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
{{- if (not .Site.Params.disableScrollToTop) }}
|
|
|
|
<script>
|
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-11-17 11:14:16 +01:00
|
|
|
|
2020-10-04 17:13:24 +02:00
|
|
|
</script>
|
2021-03-25 06:30:22 +01:00
|
|
|
{{- end }}
|
|
|
|
|
2020-11-04 09:34:45 +01:00
|
|
|
{{- if (not .Site.Params.disableThemeToggle) }}
|
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');
|
|
|
|
}
|
|
|
|
})
|
2020-11-17 11:14:16 +01:00
|
|
|
|
2020-10-04 17:13:24 +02:00
|
|
|
</script>
|
2020-10-18 18:22:22 +02:00
|
|
|
{{- end }}
|