-
Notifications
You must be signed in to change notification settings - Fork 0
/
privacy.html
77 lines (63 loc) · 4.04 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
---
layout: page-fullwidth
title: "Privacy Policy"
---
<p>
This website uses Google Analytics, a web analytics service provided by Google, Inc. ("Google").
Google Analytics uses "cookies", which are text files placed on your computer, to help the website
analyze how users use the site. The information generated by the cookie about your use of the
website (including your IP address) will be transmitted to and stored by Google on servers in the
United States. In case of activation of the IP anonymization, Google will truncate/anonymize the
last octet of the IP address for Member States of the European Union as well as for other parties
to the Agreement on the European Economic Area. Only in exceptional cases, the full IP address is
sent to and shortened by Google servers in the USA. On behalf of the website provider Google will
use this information for the purpose of evaluating your use of the website, compiling reports on
website activity for website operators and providing other services relating to website activity
and internet usage to the website provider. Google will not associate your IP address with any
other data held by Google. You may refuse the use of cookies by selecting the appropriate
settings on your browser. However, please note that if you do this, you may not be able to use
the full functionality of this website. Furthermore you can prevent Google’s collection and use
of data (cookies and IP address) by downloading and installing the browser plug-in available
under <a href="https://tools.google.com/dlpage/gaoptout?hl=en-GB">https://tools.google.com/dlpage/gaoptout?hl=en-GB</a>.
</p>
<p>You can refuse the use of Google Analytics by clicking on the following link. An opt-out
cookie will be set on the computer, which prevents the future collection of your data when
visiting this website.
</p>
<p>In any case, this site will store a cookie indicating whether you have given consent to
tracking or not. This cookie is retained for a period of 12 months after which you will be asked
again to provide consent.
</p>
<p>If you provide consent or revoke consent, these action is logged along
with your tracking ID. However, if you deny consent directly, without having provided consent
before, this action is not logged.</p>
<div style="text-align: center;">
<button id="optinButton" onclick='optin()'>Enable Google Analytics</button>
<button id="optoutButton" onclick='optout()'>Disable Google Analytics</button>
</div>
<div id="optinoutStatus" style="text-align: center;"></div>
<script src="{{ site.url }}/assets/js/javascript.min.js"></script>
<script type="text/javascript">
var gaProperty = '{{ site.google_analytics_tracking_id }}';
var disableStr = 'ga-disable-' + gaProperty;
function optout() {
gaOptout();
renderOptInOutButton();
}
function optin() {
gaOptin();
renderOptInOutButton();
}
function renderOptInOutButton()
{
var optedIn = document.cookie.indexOf(disableStr + '=false') > -1;
var optedOut = document.cookie.indexOf(disableStr + '=true') > -1;
var trackingActive = !(Cookies.get(disableStr) != 'false');
$("#optinButton").css('display', optedIn ? 'none' : 'inline');
$("#optoutButton").css('display', optedOut ? 'none' : 'inline');
$("#optinoutStatus").html("<b>Tracking enabled: " + trackingActive + "</b>" );
}
$(document).ready(renderOptInOutButton);
</script>
<p>Further information concerning the terms and conditions of use and data privacy can be found at <a href="http://www.google.com/analytics/terms/gb.html">http://www.google.com/analytics/terms/gb.html</a> or at <a href="https://www.google.de/intl/en_uk/policies/">https://www.google.de/intl/en_uk/policies/</a>. Please note that on this website, Google Analytics code is supplemented by "anonymizeIp" to ensure an anonymized collection of IP addresses (so called IP-masking).</p>
<p><i>Source: <a href="https://www.datenschutzbeauftragter-info.de/fachbeitraege/google-analytics-datenschutzkonform-einsetzen">https://www.datenschutzbeauftragter-info.de/fachbeitraege/google-analytics-datenschutzkonform-einsetzen/</a></i></p>