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.

publicfooter.php 466B

1234567891011121314151617181920
  1. <?php
  2. declare(strict_types=1);
  3. $ENV = ENV::go();
  4. echo <<<HTML
  5. </main>
  6. <footer>
  7. <a href="/legal.php?p=privacy">Privacy</a>
  8. <a href="/legal.php?p=dmca">DMCA</a>
  9. <a class="external" href="https://github.com/biotorrents" target="_blank">GitHub</a>
  10. <a class="external" href="https://patreon.com/biotorrents" target="_blank">Patreon</a>
  11. </footer>
  12. <script src="$ENV->STATIC_SERVER/functions/vendor/instantpage.js" type="module"></script>
  13. </body>
  14. </html>
  15. HTML;