2020-07-21 12:06:30 +02:00
|
|
|
|
<footer class="footer">
|
2020-08-24 22:10:02 +02:00
|
|
|
|
<span>© {{ now.Year }} <a href="{{ "" | absLangURL }}">{{ .Site.Title }}</a></span>
|
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-09-17 08:26:28 +02:00
|
|
|
|
{{if in site.Params.mainSections .Type }}
|
2020-07-21 12:06:30 +02:00
|
|
|
|
{{ $highlight := resources.Get "js/highlight.min.js" | minify | fingerprint}}
|
|
|
|
|
<script src="{{ $highlight.Permalink }}" integrity="{{ $highlight.Data.Integrity }}"></script>
|
2020-09-17 08:26:28 +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-09-17 11:27:20 +02:00
|
|
|
|
{{if in site.Params.mainSections .Type }}
|
2020-07-21 12:06:30 +02:00
|
|
|
|
hljs.initHighlightingOnLoad();
|
2020-09-17 11:27:20 +02:00
|
|
|
|
{{end }}
|
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-07-21 12:06:30 +02:00
|
|
|
|
</script>
|