2021-09-02 16:49:52 +02:00
|
|
|
{{- if not (.Param "hideFooter") }}
|
2020-07-21 12:06:30 +02:00
|
|
|
<footer class="footer">
|
2022-03-27 15:14:06 +02:00
|
|
|
{{- if site.Copyright }}
|
|
|
|
<span>{{ site.Copyright | markdownify }}</span>
|
2020-10-05 06:34:33 +02:00
|
|
|
{{- else }}
|
2022-03-27 15:14:06 +02:00
|
|
|
<span>© {{ now.Year }} <a href="{{ "" | absLangURL }}">{{ site.Title }}</a></span>
|
2020-10-05 06:34:33 +02:00
|
|
|
{{- end }}
|
2021-05-01 08:02:11 +02:00
|
|
|
<span>
|
|
|
|
Powered by
|
|
|
|
<a href="https://gohugo.io/" rel="noopener noreferrer" target="_blank">Hugo</a> &
|
|
|
|
<a href="https://git.io/hugopapermod" rel="noopener" target="_blank">PaperMod</a>
|
|
|
|
</span>
|
2020-07-21 12:06:30 +02:00
|
|
|
</footer>
|
2021-09-02 16:49:52 +02:00
|
|
|
{{- end }}
|
2021-03-30 14:37:36 +02:00
|
|
|
|
2022-03-27 15:14:06 +02:00
|
|
|
{{- if (not site.Params.disableScrollToTop) }}
|
2021-09-05 08:24:00 +02:00
|
|
|
<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>
|
2020-12-24 08:17:42 +01:00
|
|
|
</a>
|
2021-03-25 06:30:22 +01:00
|
|
|
{{- end }}
|
2021-03-30 14:37:36 +02:00
|
|
|
|
2021-04-09 16:06:09 +02:00
|
|
|
{{- partial "extend_footer.html" . }}
|
2021-03-30 14:37:36 +02:00
|
|
|
|
2020-07-21 12:06:30 +02:00
|
|
|
<script>
|
2021-04-29 15:32:59 +02:00
|
|
|
let menu = document.getElementById('menu')
|
2021-10-30 16:31:35 +02:00
|
|
|
if (menu) {
|
|
|
|
menu.scrollLeft = localStorage.getItem("menu-scroll-position");
|
|
|
|
menu.onscroll = function () {
|
|
|
|
localStorage.setItem("menu-scroll-position", menu.scrollLeft);
|
|
|
|
}
|
2021-03-25 06:30:22 +01:00
|
|
|
}
|
|
|
|
|
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>
|
|
|
|
|
2022-03-27 15:14:06 +02:00
|
|
|
{{- if (not site.Params.disableScrollToTop) }}
|
2021-03-25 06:30:22 +01:00
|
|
|
<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 }}
|
|
|
|
|
2022-03-27 15:14:06 +02: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 }}
|
2021-04-10 08:03:31 +02:00
|
|
|
|
2021-09-02 16:52:08 +02:00
|
|
|
{{- if (and (eq .Kind "page") (ne .Layout "archives") (ne .Layout "search") (.Param "ShowCodeCopyButtons")) }}
|
2021-04-10 08:03:31 +02:00
|
|
|
<script>
|
|
|
|
document.querySelectorAll('pre > code').forEach((codeblock) => {
|
|
|
|
const container = codeblock.parentNode.parentNode;
|
|
|
|
|
|
|
|
const copybutton = document.createElement('button');
|
|
|
|
copybutton.classList.add('copy-code');
|
2022-05-14 07:25:41 +02:00
|
|
|
copybutton.innerHTML = '{{- i18n "code_copy" | default "copy" }}';
|
2021-04-10 08:03:31 +02:00
|
|
|
|
|
|
|
function copyingDone() {
|
2022-05-14 07:25:41 +02:00
|
|
|
copybutton.innerHTML = '{{- i18n "code_copied" | default "copied!" }}';
|
2021-04-10 08:03:31 +02:00
|
|
|
setTimeout(() => {
|
2022-05-14 07:25:41 +02:00
|
|
|
copybutton.innerHTML = '{{- i18n "code_copy" | default "copy" }}';
|
2021-04-10 08:03:31 +02:00
|
|
|
}, 2000);
|
|
|
|
}
|
|
|
|
|
|
|
|
copybutton.addEventListener('click', (cb) => {
|
|
|
|
if ('clipboard' in navigator) {
|
|
|
|
navigator.clipboard.writeText(codeblock.textContent);
|
|
|
|
copyingDone();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const range = document.createRange();
|
|
|
|
range.selectNodeContents(codeblock);
|
|
|
|
const selection = window.getSelection();
|
|
|
|
selection.removeAllRanges();
|
|
|
|
selection.addRange(range);
|
|
|
|
try {
|
|
|
|
document.execCommand('copy');
|
|
|
|
copyingDone();
|
|
|
|
} catch (e) { };
|
|
|
|
selection.removeRange(range);
|
|
|
|
});
|
|
|
|
|
2021-04-16 06:30:08 +02:00
|
|
|
if (container.classList.contains("highlight")) {
|
|
|
|
container.appendChild(copybutton);
|
|
|
|
} else if (container.parentNode.firstChild == container) {
|
|
|
|
// td containing LineNos
|
|
|
|
} else if (codeblock.parentNode.parentNode.parentNode.parentNode.parentNode.nodeName == "TABLE") {
|
|
|
|
// table containing LineNos and code
|
|
|
|
codeblock.parentNode.parentNode.parentNode.parentNode.parentNode.appendChild(copybutton);
|
|
|
|
} else {
|
|
|
|
// code blocks not having highlight as parent class
|
|
|
|
codeblock.parentNode.appendChild(copybutton);
|
|
|
|
}
|
2021-04-10 08:03:31 +02:00
|
|
|
});
|
|
|
|
</script>
|
|
|
|
{{- end }}
|