2021-04-30 01:16:32 +02:00
|
|
|
<?php
|
|
|
|
echo '<center>';
|
2022-12-15 07:19:27 +01:00
|
|
|
$pubkeyfile = getcwd().'/../tmp/pubkey.txt';
|
|
|
|
if(is_file($pubkeyfile) && (isset($CONFIG['site_shortname']) && $CONFIG['site_shortname'] != '')) {
|
|
|
|
echo '<font size="1.5em">';
|
2023-04-14 03:52:30 +02:00
|
|
|
echo '<a href="/tmp/pubkey.txt" target=_blank>'.$CONFIG['site_shortname'].'</a>';
|
2022-12-12 01:22:51 +01:00
|
|
|
echo '<br />';
|
2022-12-15 07:19:27 +01:00
|
|
|
echo '</font>';
|
2022-12-12 01:22:51 +01:00
|
|
|
}
|
2022-12-15 07:19:27 +01:00
|
|
|
echo '<font size="1em">';
|
2023-05-29 19:08:32 +02:00
|
|
|
echo '<a href="https://github.com/novabbs/rocksolid-light" target=_blank><img src="/common/images/footer.png"></a><br />';
|
2022-11-21 21:10:08 +01:00
|
|
|
echo '<i>rocksolid light</i> '.$rslight_version;
|
2021-04-30 01:16:32 +02:00
|
|
|
echo '<br />';
|
|
|
|
echo '<a href="https://github.com/novabbs/rocksolid-light" target=_blank>clearnet</a>';
|
|
|
|
echo '<a href="http://rslight.i2p/getrslight" target=_blank>i2p</a>';
|
2022-11-26 03:37:19 +01:00
|
|
|
echo '<a href="http://git.fwfwqtpi2ofmehzdxe3e2htqfmhwfciwivpnsztv7dvpuamhr72ktlqd.onion/novabbs/rocksolid-light" target=_blank>tor</a>';
|
2021-04-30 01:16:32 +02:00
|
|
|
echo '</font>';
|
|
|
|
echo '</center>';
|
2023-04-14 03:52:30 +02:00
|
|
|
?>
|