This commit is contained in:
bel
2021-09-14 06:29:17 -06:00
commit a71c585675
36 changed files with 700 additions and 0 deletions

13
gollum/custom.js Executable file
View File

@@ -0,0 +1,13 @@
function load_segment() {
var elem = document.getElementById("last_segment")
if (elem) {
var arr = window.location.href.split('/')
elem.innerHTML = arr[arr.length-1]
elem.setAttribute("href", window.location.href.split('#')[0])
} else {
setTimeout(function() {
load_segment()
}, 50)
}
}
load_segment()