2020-07-21 11:06:30 +01:00
|
|
|
<footer class="footer">
|
2020-10-05 05:34:33 +01:00
|
|
|
{{- if .Site.Copyright }}
|
|
|
|
<span>{{ .Site.Copyright | markdownify }}</span>
|
|
|
|
{{- else }}
|
2020-08-24 21:10:02 +01:00
|
|
|
<span>© {{ now.Year }} <a href="{{ "" | absLangURL }}">{{ .Site.Title }}</a></span>
|
2020-10-05 05:34:33 +01:00
|
|
|
{{- end }}
|
2021-05-01 07:02:11 +01: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 11:06:30 +01:00
|
|
|
</footer>
|
2021-03-30 13:37:36 +01:00
|
|
|
|
2021-03-25 05:30:22 +00:00
|
|
|
{{- if (not .Site.Params.disableScrollToTop) }}
|
2020-12-29 11:33:22 +00: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 15:31:50 +00:00
|
|
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 6" fill="currentColor">
|
2020-12-24 07:17:42 +00:00
|
|
|
<path d="M12 6H0l6-6z" />
|
|
|
|
</svg>
|
|
|
|
</button>
|
|
|
|
</a>
|
2021-03-25 05:30:22 +00:00
|
|
|
{{- end }}
|
2021-03-30 13:37:36 +01:00
|
|
|
|
2021-04-09 15:06:09 +01:00
|
|
|
{{- partial "extend_footer.html" . }}
|
2021-03-30 13:37:36 +01:00
|
|
|
|
2020-07-21 11:06:30 +01:00
|
|
|
<script>
|
2021-04-29 14:32:59 +01:00
|
|
|
let menu = document.getElementById('menu')
|
|
|
|
menu.scrollLeft = localStorage.getItem("menu-scroll-position");
|
|
|
|
menu.onscroll = function () {
|
|
|
|
localStorage.setItem("menu-scroll-position", menu.scrollLeft);
|
2021-03-25 05:30:22 +00:00
|
|
|
}
|
|
|
|
|
2020-12-24 07:17:42 +00:00
|
|
|
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
|
|
|
|
anchor.addEventListener("click", function (e) {
|
|
|
|
e.preventDefault();
|
|
|
|
var id = this.getAttribute("href").substr(1);
|
2021-01-13 17:49:35 +00: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 07:17:42 +00:00
|
|
|
if (id === "top") {
|
|
|
|
history.replaceState(null, null, " ");
|
|
|
|
} else {
|
2021-01-25 16:18:15 +00:00
|
|
|
history.pushState(null, null, `#${id}`);
|
2020-12-24 07:17:42 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
2021-03-25 05:30:22 +00:00
|
|
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
{{- if (not .Site.Params.disableScrollToTop) }}
|
|
|
|
<script>
|
2020-07-27 07:34:36 +01: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 10:14:16 +00:00
|
|
|
|
2020-10-04 16:13:24 +01:00
|
|
|
</script>
|
2021-03-25 05:30:22 +00:00
|
|
|
{{- end }}
|
|
|
|
|
2020-11-04 08:34:45 +00:00
|
|
|
{{- if (not .Site.Params.disableThemeToggle) }}
|
2020-10-04 16:13:24 +01: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 10:14:16 +00:00
|
|
|
|
2020-10-04 16:13:24 +01:00
|
|
|
</script>
|
2020-10-18 17:22:22 +01:00
|
|
|
{{- end }}
|
2021-04-10 07:03:31 +01:00
|
|
|
|
2021-04-25 01:00:00 +01:00
|
|
|
{{- if (and (eq .Kind "page") (ne .Layout "archives") (ne .Layout "search") (.Site.Params.ShowCodeCopyButtons)) }}
|
2021-04-10 07:03:31 +01:00
|
|
|
<script>
|
|
|
|
document.querySelectorAll('pre > code').forEach((codeblock) => {
|
|
|
|
const container = codeblock.parentNode.parentNode;
|
|
|
|
|
|
|
|
const copybutton = document.createElement('button');
|
|
|
|
copybutton.classList.add('copy-code');
|
|
|
|
copybutton.innerText = '{{- i18n "code_copy" | default "copy" }}';
|
|
|
|
|
|
|
|
function copyingDone() {
|
|
|
|
copybutton.innerText = '{{- i18n "code_copied" | default "copied!" }}';
|
|
|
|
setTimeout(() => {
|
|
|
|
copybutton.innerText = '{{- i18n "code_copy" | default "copy" }}';
|
|
|
|
}, 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 05:30:08 +01: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 07:03:31 +01:00
|
|
|
});
|
|
|
|
</script>
|
|
|
|
{{- end }}
|