added cookie & privacy policy page, updated footer
This commit is contained in:
parent
fb4fd44405
commit
c439c874e4
@ -82,7 +82,7 @@
|
||||
</div>
|
||||
|
||||
<footer>
|
||||
<h4>Copyright © 2020 ― Lorenzo Dellacà</h4>
|
||||
<h4>Copyright © 2019-20 ― Lorenzo Dellacà</h4>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
@ -52,7 +52,7 @@
|
||||
</ul>
|
||||
</div>
|
||||
<footer>
|
||||
<h4>Copyright © 2020 ― Lorenzo Dellacà</h4>
|
||||
<h4>Copyright © 2019-20 ― Lorenzo Dellacà</h4>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
101
pages/policy.html
Normal file
101
pages/policy.html
Normal file
@ -0,0 +1,101 @@
|
||||
<!doctype html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8" name="viewport" content="width=device-width, height=device-height, initial-scale=1, maximum-scale=1, user-scalable=0">
|
||||
<link href="/styles/pages-style.css" rel="stylesheet" type="text/css">
|
||||
<link rel="shortcut icon" type="image/png" href="/images/logos/brain-128.png"/>
|
||||
<title>Mind Overflow : Policies</title>
|
||||
<script src="https://code.jquery.com/jquery-3.5.1.js"
|
||||
integrity="sha256-QWo7LDvxbWT2tbbQ97B53yJnYU3WhH/C8ycbRAkjPDc="
|
||||
crossorigin="anonymous"></script>
|
||||
<script src="/scripts/arrow-fade.js"></script>
|
||||
|
||||
<!-- Matomo -->
|
||||
<script type="text/javascript">
|
||||
var _paq = window._paq || [];
|
||||
/* tracker methods like "setCustomDimension" should be called before "trackPageView" */
|
||||
_paq.push(['trackPageView']);
|
||||
_paq.push(['enableLinkTracking']);
|
||||
(function() {
|
||||
var u="//admin.mind-overflow.net/matomo/";
|
||||
_paq.push(['setTrackerUrl', u+'matomo.php']);
|
||||
_paq.push(['setSiteId', '1']);
|
||||
var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0];
|
||||
g.type='text/javascript'; g.async=true; g.defer=true; g.src=u+'matomo.js'; s.parentNode.insertBefore(g,s);
|
||||
})();
|
||||
</script>
|
||||
<!-- End Matomo Code -->
|
||||
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div class="top-bar">
|
||||
<div class="topnav">
|
||||
<a href="/">Home</a>
|
||||
<a class="rainbow" href="https://old.mind-overflow.net/career.html">Services</a>
|
||||
<a href="/pages/about.html">About</a>
|
||||
<a href="/pages/contact.html">Contact</a>
|
||||
<a href="https://cloud.mind-overflow.net/">Cloud</a>
|
||||
</div>
|
||||
<h1>Cookie & Privacy Policy</h1>
|
||||
<i class="arrow-down"></i>
|
||||
</div>
|
||||
|
||||
<div class="content">
|
||||
<h2>About this policy</h2>
|
||||
<p>
|
||||
This text will try to be as clear and concise as possible, while also thoroughly explaining all the necessary information about data and privacy management.
|
||||
<br>
|
||||
This policy describes the data we gather from visitors and how we use it. It applies to this domain (mind-overflow.net) and all of its related subdomains.
|
||||
<br>
|
||||
</p>
|
||||
|
||||
<h2>Who we are</h2>
|
||||
<p>
|
||||
This website, domain (mind-overflow.net) and all of its subdomains are owned and managed by Lorenzo Dellacà.
|
||||
<br>
|
||||
You can contact him in various ways, listed in the <a href="/pages/contact.html">contact</a> page.
|
||||
<br>
|
||||
The owner lives in Italy (Lombardy), while the server (and all of its data) is hosted in France.
|
||||
</p>
|
||||
|
||||
<h2>What data we gather and why</h2>
|
||||
<p>
|
||||
This website does not rely on cookies to provide correct functionality, however some minor cookies are still saved for statistics purposes.
|
||||
<br>
|
||||
This data is not shared nor distributed with anyone else outside of the server itself, and is strictly protected and suitably anonymized.
|
||||
</p>
|
||||
<h3>Usage statistics data</h3>
|
||||
<p>
|
||||
When a visitor connects to this website, we log the following data: web pages visited on this domain, date and duration of the visit, an anonymized part of the visitor’s IP address,
|
||||
and some info about the visitor’s device (type, OS, resolution, language, approximate geolocation based on IP address, user agent, inlink, outlink, page generation time).
|
||||
<br>
|
||||
A very small cookie will be saved, containing this data: random visitor ID, date of the first and latest visit, number of total visits.
|
||||
<br><br>
|
||||
This data will then be automatically processed by a self-hosted version of <a href="https://matomo.org">Matomo Analytics</a>,
|
||||
for the sole purpose of providing the owner with generic statistics.
|
||||
<br>
|
||||
This allows the owner to constantly update and adapt its services to the better fit their visitors’ needs, while also ensuring complete compatibility and accessibility,
|
||||
and also allowing to promptly respond to abuses and misuses.
|
||||
<br><br>
|
||||
This data is stored locally on the server and nowhere else, on an encrypted, automated database. The data is not shared nor disclosed to anyone.
|
||||
<br><br>
|
||||
You can click <a href="https://matomo.org/privacy-policy/">here</a> to read Matomo Analytics’ official privacy policy.
|
||||
</p>
|
||||
|
||||
<h2>How to prevent data gathering</h2>
|
||||
<p>
|
||||
This data gathering is compliant with <a href="https://donottrack-doc.com/en/intro/">Do Not Track</a> HTTP headers. If you enable this setting in your browser, we will immediately stop
|
||||
gathering statistics about you.
|
||||
<br>
|
||||
However, if you are unable to use Do Not Track headers, you can simply change your browser settings to disallow cookie saving for this specific domain or subdomains.
|
||||
<br>
|
||||
This will have the same effect as enabling those headers, however some functionality cookies might get blocked too, causing malfunctions and unwanted or unpredictable behaviour.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<footer>
|
||||
<h4>Copyright © 2019-20 ― Lorenzo Dellacà</h4>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
Reference in New Issue
Block a user