summaryrefslogtreecommitdiffstats
path: root/head.html
blob: 96f3daf8fa93f2d45e6b849a60e52f573c06d37c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="preconnect" href="https://fonts.googleapis.com">
<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>