2021-09-02 20:19:52 +05:30
|
|
|
{{- if not (.Param "hideFooter") }}
|
2020-07-21 15:36:30 +05:30
|
|
|
<footer class="footer">
|
2022-03-27 18:44:06 +05:30
|
|
|
{{- if site.Copyright }}
|
|
|
|
<span>{{ site.Copyright | markdownify }}</span>
|
2020-10-04 21:34:33 -07:00
|
|
|
{{- else }}
|
2022-03-27 18:44:06 +05:30
|
|
|
<span>© {{ now.Year }} <a href="{{ "" | absLangURL }}">{{ site.Title }}</a></span>
|
2020-10-04 21:34:33 -07:00
|
|
|
{{- end }}
|
2021-05-01 11:32:11 +05:30
|
|
|
<span>
|
|
|
|
Powered by
|
|
|
|
<a href="https://gohugo.io/" rel="noopener noreferrer" target="_blank">Hugo</a> &
|
2022-05-29 11:12:48 +05:30
|
|
|
<a href="https://github.com/adityatelange/hugo-PaperMod/" rel="noopener" target="_blank">PaperMod</a>
|
2021-05-01 11:32:11 +05:30
|
|
|
</span>
|
2020-07-21 15:36:30 +05:30
|
|
|
</footer>
|
2021-09-02 20:19:52 +05:30
|
|
|
{{- end }}
|
2021-03-30 18:07:36 +05:30
|
|
|
|
2022-03-27 18:44:06 +05:30
|
|
|
{{- if (not site.Params.disableScrollToTop) }}
|
2021-09-05 02:24:00 -04: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 12:47:42 +05:30
|
|
|
</a>
|
2021-03-25 11:00:22 +05:30
|
|
|
{{- end }}
|
2021-03-30 18:07:36 +05:30
|
|
|
|
2021-04-09 19:36:09 +05:30
|
|
|
{{- partial "extend_footer.html" . }}
|
2021-03-30 18:07:36 +05:30
|
|
|
|
2020-07-21 15:36:30 +05:30
|
|
|
<script>
|
2021-04-29 19:02:59 +05:30
|
|
|
let menu = document.getElementById('menu')
|
2021-10-30 20:01:35 +05:30
|
|
|
if (menu) {
|
|
|
|
menu.scrollLeft = localStorage.getItem("menu-scroll-position");
|
|
|
|
menu.onscroll = function () {
|
|
|
|
localStorage.setItem("menu-scroll-position", menu.scrollLeft);
|
|
|
|
}
|
2021-03-25 11:00:22 +05:30
|
|
|
}
|
|
|
|
|
2020-12-24 12:47:42 +05:30
|
|
|
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
|
|
|
|
anchor.addEventListener("click", function (e) {
|
|
|
|
e.preventDefault();
|
|
|
|
var id = this.getAttribute("href").substr(1);
|
2021-01-13 23:19:35 +05:30
|
|
|
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 12:47:42 +05:30
|
|
|
if (id === "top") {
|
|
|
|
history.replaceState(null, null, " ");
|
|
|
|
} else {
|
2021-01-25 21:48:15 +05:30
|
|
|
history.pushState(null, null, `#${id}`);
|
2020-12-24 12:47:42 +05:30
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
2021-03-25 11:00:22 +05:30
|
|
|
|
|
|
|
</script>
|
|
|
|
|
2022-03-27 18:44:06 +05:30
|
|
|
{{- if (not site.Params.disableScrollToTop) }}
|
2021-03-25 11:00:22 +05:30
|
|
|
<script>
|
2020-07-27 12:04:36 +05:30
|
|
|
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 15:44:16 +05:30
|
|
|
|
2020-10-04 20:43:24 +05:30
|
|
|
</script>
|
2021-03-25 11:00:22 +05:30
|
|
|
{{- end }}
|
|
|
|
|
2022-03-27 18:44:06 +05:30
|
|
|
{{- if (not site.Params.disableThemeToggle) }}
|
2020-10-04 20:43:24 +05:30
|
|
|
<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 15:44:16 +05:30
|
|
|
|
2020-10-04 20:43:24 +05:30
|
|
|
</script>
|
2020-10-18 21:52:22 +05:30
|
|
|
{{- end }}
|
2021-04-09 23:03:31 -07:00
|
|
|
|
2021-09-02 20:22:08 +05:30
|
|
|
{{- if (and (eq .Kind "page") (ne .Layout "archives") (ne .Layout "search") (.Param "ShowCodeCopyButtons")) }}
|
2021-04-09 23:03:31 -07: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 10:55:41 +05:30
|
|
|
copybutton.innerHTML = '{{- i18n "code_copy" | default "copy" }}';
|
2021-04-09 23:03:31 -07:00
|
|
|
|
|
|
|
function copyingDone() {
|
2022-05-14 10:55:41 +05:30
|
|
|
copybutton.innerHTML = '{{- i18n "code_copied" | default "copied!" }}';
|
2021-04-09 23:03:31 -07:00
|
|
|
setTimeout(() => {
|
2022-05-14 10:55:41 +05:30
|
|
|
copybutton.innerHTML = '{{- i18n "code_copy" | default "copy" }}';
|
2021-04-09 23:03:31 -07: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 10:00:08 +05:30
|
|
|
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-09 23:03:31 -07:00
|
|
|
});
|
|
|
|
</script>
|
|
|
|
{{- end }}
|