commit b55edef916ae089bc28676512bc3f5a54a19c979 parent 9e838218ee7ad43f0bf6f65feeb8851dadf53c78 Author: Nixx <nixx@firemail.cc> Date: Sun, 22 Aug 2021 16:18:11 +0100 Tweak to accommodate new webring script Diffstat:
M | includes/listing-content.php | | | 17 | ++++++++++++----- |
1 file changed, 12 insertions(+), 5 deletions(-)
diff --git a/includes/listing-content.php b/includes/listing-content.php @@ -49,15 +49,22 @@ echo '<table class="centre webring-table">'; echo '<tbody>'; echo '<colgroup>'; - echo '<col style="width: 50%">'; - echo '<col style="width: 50%">'; + echo '<col style="width: 40%">'; + echo '<col style="width: 20%">'; + echo '<col style="width: 20%">'; + echo '<col style="width: 20%">'; echo '</colgroup>'; echo '<tr>'; - echo '<th colspan="2">Visit a random site:</th>'; + echo '<td>Clearnet:</td>'; + echo '<td><a href="/scripts/webring.php?id=concealedworld&action=previous" target="_blank"><</a></td>'; + echo '<td><a href="/scripts/webring.php?id=concealedworld&action=random" target="_blank">?</a></td>'; + echo '<td><a href="/scripts/webring.php?id=concealedworld&action=next" target="_blank">></a></td>'; echo '</tr>'; echo '<tr>'; - echo '<td><a href="/scripts/webring.php?route=clearnet" target="_blank">Clearnet</a></td>'; - echo '<td><a href="/scripts/webring.php?route=onion" target="_blank">Onion</a></td>'; + echo '<td>Onion:</td>'; + echo '<td><a href="/scripts/webring.php?id=concealedworld&action=previous&network=onion" target="_blank"><</a></td>'; + echo '<td><a href="/scripts/webring.php?id=concealedworld&action=random&network=onion" target="_blank">?</a></td>'; + echo '<td><a href="/scripts/webring.php?id=concealedworld&action=next&network=onion" target="_blank">></a></td>'; echo '</tr>'; echo '</tbody>'; echo '</table>';