index.php 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <?php
  2. /*
  3. * Personal website of UltrasonicMadness
  4. * Copyright (C) 2017-2018, 2021-2023 UltrasonicMadness
  5. *
  6. * This program is free software: you can redistribute it and/or modify
  7. * it under the terms of the GNU Affero General Public License as
  8. * published by the Free Software Foundation, either version 3 of the
  9. * License, or (at your option) any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU Affero General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU Affero General Public License
  17. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  18. */
  19. include($_SERVER['DOCUMENT_ROOT'] . '/../backend/php/page-elements.php');
  20. ?>
  21. <!DOCTYPE html>
  22. <html>
  23. <head>
  24. <?php
  25. gen_html_head('Privacy Policy', 'gray');
  26. ?>
  27. </head>
  28. <body>
  29. <?php gen_common_pane(); ?>
  30. <div id="page-pane">
  31. <main>
  32. <h1>Privacy Policy</h1>
  33. <p>As a visitor to UltrasonicMadness.org "the Website", limited and non-personally identifying data about your visit such as IP address, user agent, and specific pages accessed may be aggregated using analytics tools provided by my web host, <a target="_blank" href="https://www.hostinger.co.uk/">Hostinger</a>. You may use tools such as the <a target="_blank" href="https://www.torproject.org/">Tor Browser</a> to access the Website if you do not wish to have your activity logged in this manner.</p>
  34. <p>In addition, Hostinger has <a target="_blank" href="https://www.hostinger.co.uk/privacy-policy">its own privacy policy</a>.</p>
  35. <p>Last updated: 17 September 2023</p>
  36. </main>
  37. <?php inc_footer(); ?>
  38. </div>
  39. </body>
  40. </html>