2020-07-21 06:06:30 -04:00
|
|
|
<footer class="footer">
|
2020-10-05 00:34:33 -04:00
|
|
|
{{- if .Site.Copyright }}
|
|
|
|
<span>{{ .Site.Copyright | markdownify }}</span>
|
|
|
|
{{- else }}
|
2020-08-24 16:10:02 -04:00
|
|
|
<span>© {{ now.Year }} <a href="{{ "" | absLangURL }}">{{ .Site.Title }}</a></span>
|
2020-10-05 00:34:33 -04:00
|
|
|
{{- end }}
|
2020-07-21 06:06:30 -04:00
|
|
|
<span>·</span>
|
2020-10-30 08:01:52 -04:00
|
|
|
<span>Powered by <a href="https://gohugo.io/" rel="noopener noreferrer" target="_blank">Hugo</a></span>
|
2020-07-21 06:06:30 -04:00
|
|
|
<span>·</span>
|
2020-10-30 08:01:52 -04:00
|
|
|
<span>Theme <a href="https://git.io/hugopapermod" rel="noopener" target="_blank">PaperMod</a></span>
|
2020-07-21 06:06:30 -04:00
|
|
|
</footer>
|
2021-03-30 08:37:36 -04:00
|
|
|
|
2021-03-25 01:30:22 -04:00
|
|
|
{{- if (not .Site.Params.disableScrollToTop) }}
|
2020-12-29 06:33:22 -05: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 10:31:50 -05:00
|
|
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 6" fill="currentColor">
|
2020-12-24 02:17:42 -05:00
|
|
|
<path d="M12 6H0l6-6z" />
|
|
|
|
</svg>
|
|
|
|
</button>
|
|
|
|
</a>
|
2021-03-25 01:30:22 -04:00
|
|
|
{{- end }}
|
2021-03-30 08:37:36 -04:00
|
|
|
|
2020-10-18 12:22:22 -04:00
|
|
|
{{- partial "extend_footer.html" . -}}
|
2021-03-30 08:37:36 -04:00
|
|
|
|
2020-12-29 05:33:49 -05:00
|
|
|
{{- $isHLJSdisabled := (.Site.Params.assets.disableHLJS | default .Params.disableHLJS ) }}
|
2021-01-15 12:51:13 -05:00
|
|
|
{{- if (and (eq .Kind "page") (ne .Layout "archives") (ne .Layout "search") (not $isHLJSdisabled)) }}
|
2020-12-01 08:22:06 -05:00
|
|
|
{{- if not .Site.Params.assets.disableFingerprinting }}
|
2021-01-26 00:22:41 -05:00
|
|
|
{{- $highlight := slice (resources.Get "js/highlight.min.js") | resources.Concat "assets/js/highlight.js" | minify | fingerprint }}
|
2021-01-20 08:41:06 -05:00
|
|
|
<script defer src="{{ $highlight.RelPermalink }}" integrity="{{ $highlight.Data.Integrity }}"
|
2020-11-17 05:14:16 -05:00
|
|
|
onload="hljs.initHighlightingOnLoad();"></script>
|
2021-03-30 08:37:36 -04:00
|
|
|
{{- else }}
|
2020-12-01 08:22:06 -05:00
|
|
|
{{- $highlight := slice (resources.Get "js/highlight.min.js") | resources.Concat "assets/js/highlight.js" | minify }}
|
2021-01-20 08:41:06 -05:00
|
|
|
<script defer src="{{ $highlight.RelPermalink }}" onload="hljs.initHighlightingOnLoad();"></script>
|
2020-09-23 03:22:32 -04:00
|
|
|
{{- end }}
|
2021-03-30 08:37:36 -04:00
|
|
|
{{- end }}
|
|
|
|
|
2020-07-21 06:06:30 -04:00
|
|
|
<script>
|
2020-08-21 11:33:05 -04:00
|
|
|
window.onload = function () {
|
|
|
|
if (localStorage.getItem("menu-scroll-position")) {
|
|
|
|
document.getElementById('menu').scrollLeft = localStorage.getItem("menu-scroll-position");
|
|
|
|
}
|
|
|
|
}
|
2021-03-25 01:30:22 -04:00
|
|
|
|
|
|
|
function menu_on_scroll() {
|
|
|
|
localStorage.setItem("menu-scroll-position", document.getElementById('menu').scrollLeft);
|
|
|
|
}
|
|
|
|
|
2020-12-24 02:17:42 -05:00
|
|
|
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
|
|
|
|
anchor.addEventListener("click", function (e) {
|
|
|
|
e.preventDefault();
|
|
|
|
var id = this.getAttribute("href").substr(1);
|
2021-01-13 12:49:35 -05: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 02:17:42 -05:00
|
|
|
if (id === "top") {
|
|
|
|
history.replaceState(null, null, " ");
|
|
|
|
} else {
|
2021-01-25 11:18:15 -05:00
|
|
|
history.pushState(null, null, `#${id}`);
|
2020-12-24 02:17:42 -05:00
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
2021-03-25 01:30:22 -04:00
|
|
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
{{- if (not .Site.Params.disableScrollToTop) }}
|
|
|
|
<script>
|
2020-07-27 02:34:36 -04: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 05:14:16 -05:00
|
|
|
|
2020-10-04 11:13:24 -04:00
|
|
|
</script>
|
2021-03-25 01:30:22 -04:00
|
|
|
{{- end }}
|
|
|
|
|
2020-11-04 03:34:45 -05:00
|
|
|
{{- if (not .Site.Params.disableThemeToggle) }}
|
2020-10-04 11:13:24 -04: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 05:14:16 -05:00
|
|
|
|
2020-10-04 11:13:24 -04:00
|
|
|
</script>
|
2020-10-18 12:22:22 -04:00
|
|
|
{{- end }}
|