12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <?php
- /*
- * Personal website of UltrasonicMadness
- * Copyright (C) 2017-2018, 2021-2023 UltrasonicMadness
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Affero General Public License as
- * published by the Free Software Foundation, either version 3 of the
- * License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Affero General Public License for more details.
- *
- * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
-
- include($_SERVER['DOCUMENT_ROOT'] . '/../backend/php/page-elements.php');
- ?>
- <!DOCTYPE html>
- <html>
- <head>
- <?php
- gen_html_head('Privacy Policy', 'gray');
- ?>
- </head>
-
- <body>
- <?php gen_common_pane(); ?>
-
- <div id="page-pane">
- <main>
- <h1>Privacy Policy</h1>
- <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>
- <p>In addition, Hostinger has <a target="_blank" href="https://www.hostinger.co.uk/privacy-policy">its own privacy policy</a>.</p>
- <p>Last updated: 17 September 2023</p>
- </main>
- <?php inc_footer(); ?>
- </div>
- </body>
- </html>
|