From c8f4a5c8c79c867f7ad47d84f65e8223fa5185e3 Mon Sep 17 00:00:00 2001 From: Gabriele Cirulli Date: Wed, 23 May 2018 22:55:21 +0200 Subject: [PATCH] Add Privacy Policy for GDPR compliance --- cache.appcache | 5 +- index.html | 4 ++ privacy.html | 119 ++++++++++++++++++++++++++++++++++++++++++++++++ style/main.css | 7 +++ style/main.scss | 9 ++++ 5 files changed, 143 insertions(+), 1 deletion(-) create mode 100644 privacy.html diff --git a/cache.appcache b/cache.appcache index 61adf48..8657386 100644 --- a/cache.appcache +++ b/cache.appcache @@ -3,11 +3,14 @@ CACHE MANIFEST # Adds the ability to play the game offline. # The following comment needs to be updated whenever a change is made. # Run `rake appcache:update` to do so -# Updated: 2015-10-20T11:14:00-08:00 +# Updated: 2018-05-23T22:54:30+02:00 # Main page index.html +# Privacy Page +privacy.html + # CSS style/main.css diff --git a/index.html b/index.html index a6fd42a..1764357 100644 --- a/index.html +++ b/index.html @@ -148,6 +148,10 @@ + + diff --git a/privacy.html b/privacy.html new file mode 100644 index 0000000..4c3f094 --- /dev/null +++ b/privacy.html @@ -0,0 +1,119 @@ + + + + + + Privacy Policy — 2048 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+

Privacy Policy and Cookie Statement

+
+

+ https://gabrielecirulli.github.io/2048 is operated and maintained by Gabriele Cirulli, + @iirelu and + @sigod. This document outlines the data handling practices for this website. +

+ +

What personal data do you collect?

+ +

For analytics purposes, anonymous and aggregated data may be collected, using Google Analytics. This data includes:

+ + + +

For more information on how Google Analytics uses this data see: +

+

+ +

Are cookies stored on my device? How are they used?

+ +

We use your browser's local storage features to locally store information about the game's state. This lets us save your + game at any point and allow you to pick it back up from where you left off. This data is kept in your browser and never + sent to servers operated by us or a third-party. No personally-identifiable information is included.

+ +

This website embeds social media features from Twitter. For information on Twitter's Cookie Policy please see: + https://help.twitter.com/en/rules-and-policies/twitter-cookies +

+

This website uses Google Analytics. For information on Google Analytic's Cookie Policy please see: + https://support.google.com/analytics/answer/6004245 +

+ +

If you have any questions, feel free to email + me@gabrielecirulli.com +

+
+ + + + + \ No newline at end of file diff --git a/style/main.css b/style/main.css index ba71460..a8b5209 100644 --- a/style/main.css +++ b/style/main.css @@ -1097,3 +1097,10 @@ hr { animation: pop-in-small 700ms ease 2s both; margin-top: 10px; height: 76px; } } + +.links { + text-align: center; + margin-top: 20px; } + +.privacy { + word-wrap: break-word; } diff --git a/style/main.scss b/style/main.scss index 50fffa4..ab2abb0 100644 --- a/style/main.scss +++ b/style/main.scss @@ -844,3 +844,12 @@ hr { height: 76px; } } + +.links { + text-align: center; + margin-top: 20px; +} + +.privacy { + word-wrap: break-word; +} -- GitLab