diff options
| author | bdunahu <bdunahu@operationnull.com> | 2026-04-22 14:05:25 -0400 |
|---|---|---|
| committer | bdunahu <bdunahu@operationnull.com> | 2026-04-22 14:05:25 -0400 |
| commit | ede614533592114baa0a8057f0f8c9c2d1503254 (patch) | |
| tree | 87d8b6b6672497d8b36b6097e5b6e741443e79cc /content/assets/ring.js | |
| parent | fbba36ebe0437eb93c0b92c113995d1c3d043ea4 (diff) | |
webring: use fixed-size buttons
Diffstat (limited to 'content/assets/ring.js')
| -rw-r--r-- | content/assets/ring.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/content/assets/ring.js b/content/assets/ring.js index a094844..583fec5 100644 --- a/content/assets/ring.js +++ b/content/assets/ring.js @@ -2,11 +2,11 @@ fetch('https://umaring.github.io/bdunahu.json') .then(function(ret) { return ret.json(); }) .then(function(json) { document.getElementById('umaring-id').innerHTML = `<ul> - <li> <a href=${json.prev.url}>${json.prev.name}</a> </li> + <li> <a href=${json.prev.url}>prev</a> </li> <li> <span>←</span> - <li> <a href="https://github.com/umacabal/umaring">umass ring</a> </li> + <li> <a href="https://umaring.github.io/">umaring</a> </li> <li> <span>→</span> - <li> <a href=${json.next.url}>${json.next.name}</a> </li> + <li> <a href=${json.next.url}>next</a> </li> </ul>` }) .catch(function() {}); |
