index.php 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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('Legal', 'gray');
  26. ?>
  27. </head>
  28. <body>
  29. <?php gen_common_pane(); ?>
  30. <div id="page-pane">
  31. <main>
  32. <h1>Legal</h1>
  33. <h3>Licensing</h3>
  34. <p>The code for UltrasonicMadness.org "the Website", unless otherwise stated, is licensed under the <a target="_blank" href="https://www.gnu.org/licenses/agpl.html">GNU Affero General Public License version 3</a> and the information and media displayed, unless otherwise stated, is licensed under the <a target="_blank" href="https://creativecommons.org/licenses/by-sa/4.0/legalcode">Creative Commons Attribution-ShareAlike 4.0 International Public License</a>.</p>
  35. <h3>Third-party Material</h3>
  36. <p>Any images in the common/images/third-party directory are property of their respective owners and they are used on this website solely for the purpose of identification. UltrasonicMadness does not claim any ownership of those images and they are subject to their own copyright, trademark, and related protections independent of the Website.</p>
  37. <h3>Privacy</h3>
  38. <p>UltrasonicMadness.org takes your privacy very seriously. I will only use and collect user details as specified in the <a href="/legal/privacy">privacy policy</a>. I may update this from time to time as I add software to the website but I will never collect more information than I need to operate such software.</p>
  39. <p>Last updated: 17 September 2023</p>
  40. </main>
  41. <?php inc_footer(); ?>
  42. </div>
  43. </body>
  44. </html>