-
Notifications
You must be signed in to change notification settings - Fork 0
/
privacy.html
33 lines (33 loc) · 1.13 KB
/
privacy.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
---
layout: page
title: Privacy
order: 99
nav: true
navOnly: true
---
<h2>How we process your data</h2>
<p>
This website is powered by Jekyll and is hosted on GitHub/GitHub Pages. Jekyll is
not collecting or processing user data in any form. GitHub however, as any other hosting
company, can have full insight in visitor data, like connecting IP addresses, visited pages, etc.
Note that Github is not known to actively profile visitors. By using a VPN you can (try to) prevent this.
</p>
<h3>Google Analytics</h3>
<p>
This website uses Google Analytics. This happens only if you accept third party cookies.
I have configured Google Analytics so that IP addresses are anonymized.
</p>
<p>
Use the following option to grant or revoke collecting data and using cookies.
</p>
<p>
<input type="checkbox" id="enableGA"> Enable Google Analytics
</p>
<script>
var useCookies = localStorage.getItem('useCookies');
document.getElementById('enableGA').checked = (useCookies === 'true');
var checkbox = document.getElementById('enableGA');
checkbox.addEventListener('change', function() {
localStorage.setItem('useCookies', this.checked);
});
</script>