Skip to content

Commit 9cd3575

Browse files
cassidyjamesbtkostner
authored andcommitted
Privacy page update (elementary#2059)
Some updates inspired by the Juno branch. ### Changes Summary - Renamed to "Privacy" since it's not really just a policy, but is more like privacy information - Split into three sections: OS, site, and transparency - Used docs styles to make it easier to read
1 parent 3bdeee3 commit 9cd3575

File tree

3 files changed

+22
-7
lines changed

3 files changed

+22
-7
lines changed

_templates/footer.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
<ul>
3333
<li><a href="<?php echo $sitewide['root'].'press'; ?>">Press</a></li>
3434
<li><a href="<?php echo $sitewide['root'].'brand'; ?>">Brand</a></li>
35-
<li><a href="<?php echo $sitewide['root'].'privacy-policy'; ?>">Privacy Policy</a></li>
35+
<li><a href="<?php echo $sitewide['root'].'privacy'; ?>">Privacy</a></li>
3636
<li><a href="<?php echo $sitewide['root'].'team'; ?>">Team</a></li>
3737
<li><a href="<?php echo $sitewide['root'].'open-source'; ?>">Open Source</a></li>
3838
</ul>

nginx.conf

+3
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,9 @@ server {
106106
location /funding {
107107
return 301 "/get-involved#funding";
108108
}
109+
location /privacy-policy {
110+
return 301 "/privacy";
111+
}
109112
location = /lists {
110113
deny all;
111114
}

privacy-policy.php privacy.php

+18-6
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,27 @@
11
<?php
22
require_once __DIR__.'/_backend/preload.php';
33

4-
$page['title'] = 'Privacy Policy &sdot; elementary';
4+
$page['title'] = 'Privacy &sdot; elementary';
55

66
include $template['header'];
77
include $template['alert'];
88
?>
9-
<div class="row">
10-
<h1>Privacy Policy</h1>
9+
<div class="grid">
10+
<div class="two-thirds">
11+
<h1>Privacy</h1>
12+
<h4>Your data always belongs to you, and only you. We don’t make advertising deals or collect sensitive personal data. We’re funded directly by our users paying what they want for elementary OS and apps on AppCenter. And that’s how it should be.</h4>
13+
</div>
14+
</div>
15+
<div class="row docs">
16+
<h2>elementary OS</h2>
17+
<p>We do not collect any data from elementary OS. Your files, settings, and all other personal data remain on-device unless you explicitly share them with a third-party app or service.</p>
18+
</div>
19+
<div class="row docs">
20+
<h2>Website</h2>
1121
<h3>Do Not Track</h3>
1222
<p>This site honors the do-not-track setting found in most modern browsers and disables Google Analytics when it is present. We cannot automatically remove other tracking methods without severely impacting the use of the site. Should you wish to manually manage these tracking methods, reference the section on disabling cookies.</p>
1323
<h3>Cookies</h3>
14-
<p class="text-center"><strong>You can choose to disable or selectively turn off any cookies or third-party cookies in your browser settings.</strong></p>
24+
<p><strong>You can choose to disable or selectively turn off any cookies or third-party cookies in your browser settings.</strong></p>
1525
<p>This site uses cookies for incremental improvements. You may find the services function without them but at a reduced usability. For example, the site will not remember if you have previously paid for elementary OS; by default you will be asked to pay again.</p>
1626
<h5 data-l10n-off>CloudFlare</h5>
1727
<p>Stores cookies to log behavioral elements and analyze potential threats. For more information, see the <a class="read-more" target="_blank" rel="noopener" href="https://www.cloudflare.com/security-policy">CloudFlare Privacy &amp; Security Policy</a></p>
@@ -52,8 +62,10 @@
5262
<a target="_blank" rel="noopener" href="http://support.apple.com/kb/PH17191" class="column">
5363
<img src="images/privacy-policy/safari_128x128.png" data-l10n-off alt="Safari" class="browsers-list" />
5464
<h4 data-l10n-off>Safari</h4>
55-
</a>
56-
<h3>Transparency</h3>
65+
</a>
66+
</div>
67+
<div class="row docs">
68+
<h2>Transparency</h2>
5769
<p>We have not placed any backdoors into our software and have not received any requests for doing so. We have also never received a National Security Letter, FISA order, or any other classified request for user information.</p>
5870
</div>
5971
<?php

0 commit comments

Comments
 (0)