BioTorrents.de’s version of Gazelle
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

better.php 1.8KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. <?php
  2. declare(strict_types=1);
  3. $ENV = ENV::go();
  4. View::show_header('Better');
  5. ?>
  6. <h2 class="header">
  7. Pursuit of Perfection
  8. </h2>
  9. <div class="box pad">
  10. <p>
  11. Here at <?= $ENV->SITE_NAME ?>, we believe that there's always
  12. room for improvement.
  13. To aid our effort in the pursuit of perfection, we've put together a few simple lists that can help you build
  14. ratio or something and help us improve our overall quality.
  15. Most lists feature 20 random torrents selected upon page load.
  16. </p>
  17. </div>
  18. <h3 id="lists">
  19. Lists
  20. </h3>
  21. <div class="box pad">
  22. <table>
  23. <tr class="colhead">
  24. <td style="width: 150px;">Method</td>
  25. <td style="width: 400px;">Additional Information</td>
  26. </tr>
  27. <tr class="row">
  28. <td class="nobr">
  29. <a href="better.php?method=single">Single seeder</a>
  30. </td>
  31. <td class="nobr">
  32. When a torrent only has one seeder
  33. </td>
  34. </tr>
  35. <tr class="row">
  36. <td class="nobr">
  37. <a href="better.php?method=screenshots&filter=all">Publications</a>
  38. </td>
  39. <td class="nobr">
  40. When a torrent group doesn't have a publication
  41. </td>
  42. </tr>
  43. <tr class="row">
  44. <td class="nobr">
  45. <a href="better.php?method=covers&filter=all">Pictures</a>
  46. </td>
  47. <td class="nobr">
  48. When a torrent group doesn't have a picture
  49. </td>
  50. </tr>
  51. <tr class="row">
  52. <td class="nobr">
  53. <a href="better.php?method=tags&amp;filter=all">Tags</a>
  54. </td>
  55. <td class="nobr">
  56. Torrents marked as having bad or no tags
  57. </td>
  58. </tr>
  59. <tr class="row">
  60. <td class="nobr">
  61. <a href="better.php?method=folders&filter=all">Folder names</a>
  62. </td>
  63. <td class="nobr">
  64. Torrents marked as having bad or no folder names
  65. </td>
  66. </tr>
  67. </table>
  68. </div>
  69. <?php View::show_footer();