summaryrefslogtreecommitdiffstats
path: root/head.html
diff options
context:
space:
mode:
Diffstat (limited to 'head.html')
-rw-r--r--head.html14
1 files changed, 14 insertions, 0 deletions
diff --git a/head.html b/head.html
index 874587b..96f3daf 100644
--- a/head.html
+++ b/head.html
@@ -3,3 +3,17 @@
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Oxanium:wght@400;600;700&family=IBM+Plex+Sans:wght@400;500;600&family=JetBrains+Mono:wght@400;500&display=swap" rel="stylesheet">
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
+<script>
+document.addEventListener('DOMContentLoaded', function() {
+ var td = document.querySelector('table#header td.main');
+ if (!td) return;
+ var homeLink = td.querySelector('a[href="/"]');
+ if (!homeLink) return;
+ homeLink.textContent = '/repos';
+ td.childNodes.forEach(function(node) {
+ if (node.nodeType === 3) {
+ node.textContent = node.textContent.replace(' : ', '/');
+ }
+ });
+});
+</script>