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 368B

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