index.php 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. <?php
  2. /*
  3. * Personal website of UltrasonicMadness
  4. * Copyright (C) 2018 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>. The Website uses <a href="/legal/js">JavaScript Web Labels</a> to allow it to function with extensions such as <a target="_blank" href="http://www.gnu.org/software/librejs/">GNU LibreJS</a>.</p>
  35. <h3>Third-party Material</h3>
  36. <p>The logos of <a target="_blank" href="https://gnusocial.no/">GNU Social</a>, <a target="_blank" href="https://notabug.org/">NotABug</a> and <a target="_blank" href="http://darcs.net/">Darcs</a> are property of their respective owners and they are used on this website solely for the purpose of linking to profiles owned and controlled by UltrasonicMadness on those websites.</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: 22 September 2018</p>
  40. </main>
  41. <?php inc_footer(); ?>
  42. </div>
  43. </body>
  44. </html>