blob: 72c349bcf3ae34cf7e4706f86bc41f71285a558b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
<?php /* Copyright (c) 2024 Freya Murphy */ ?>
<?php
$root='https://webring.bucketfish.me/redirect.html?to=%s&name=' . $name;
$this->view('head', $data);
if ($lightmode === 'true') {
echo $this->main->link_css('css/bucket_light.css');
} else {
echo $this->main->link_css('css/bucket.css');
}
?>
<base target="_parent" />
</head>
<body>
<div id="webring">
<center>
<span class="center">
🏳️🌈
<a href="https://webring.bucketfish.me" class="header">
<span class="e0">b</span><!--
--><span class="e1">u</span><!--
--><span class="e2">c</span><!--
--><span class="e3">k</span><!--
--><span class="e4">e</span><!--
--><span class="e5">t</span><!--
--> <!--
--><span class="e6">w</span><!--
--><span class="e7">e</span><!--
--><span class="e8">b</span><!--
--><span class="e9">r</span><!--
--><span class="e10">i</span><!--
--><span class="e11">n</span><!--
--><span class="e12">g</span>
</a>
🏳️🌈
</span>
</center>
<span class="left">⥼ <a href="<?=sprintf($root, 'prev')?>" class="prev">prev</a></span>
<span class="right"><a href="<?=sprintf($root, 'next')?>" class="next">next</a> ⥽</span>
</div>
</body>
</html>
|