1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- <?php
- declare(strict_types=1);
-
- $ENV = ENV::go();
- View::show_header('Better');
- ?>
-
- <h2 class="header">
- Pursuit of Perfection
- </h2>
-
- <div class="box pad">
- <p>
- Here at <?= $ENV->SITE_NAME ?>, we believe that there's always
- room for improvement.
- To aid our effort in the pursuit of perfection, we've put together a few simple lists that can help you build
- ratio or something and help us improve our overall quality.
- Most lists feature 20 random torrents selected upon page load.
- </p>
- </div>
-
- <h3 id="lists">
- Lists
- </h3>
-
- <div class="box pad">
- <table>
- <tr class="colhead">
- <td style="width: 150px;">Method</td>
- <td style="width: 400px;">Additional Information</td>
- </tr>
-
- <tr class="row">
- <td class="nobr">
- <a href="better.php?method=single">Single seeder</a>
- </td>
-
- <td class="nobr">
- When a torrent only has one seeder
- </td>
- </tr>
-
- <tr class="row">
- <td class="nobr">
- <a href="better.php?method=screenshots&filter=all">Publications</a>
- </td>
-
- <td class="nobr">
- When a torrent group doesn't have a publication
- </td>
- </tr>
-
- <tr class="row">
- <td class="nobr">
- <a href="better.php?method=covers&filter=all">Pictures</a>
- </td>
- <td class="nobr">
- When a torrent group doesn't have a picture
- </td>
- </tr>
-
- <tr class="row">
- <td class="nobr">
- <a href="better.php?method=tags&filter=all">Tags</a>
- </td>
-
- <td class="nobr">
- Torrents marked as having bad or no tags
- </td>
- </tr>
-
- <tr class="row">
- <td class="nobr">
- <a href="better.php?method=folders&filter=all">Folder names</a>
- </td>
-
- <td class="nobr">
- Torrents marked as having bad or no folder names
- </td>
- </tr>
- </table>
- </div>
- <?php View::show_footer();
|