-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprivacy.html
More file actions
65 lines (56 loc) · 4.26 KB
/
Copy pathprivacy.html
File metadata and controls
65 lines (56 loc) · 4.26 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Privacy — EdFringeNow</title>
<meta name="description" content="EdFringeNow sets no cookies and collects no personal data — only anonymous, aggregate visitor counts. Here's the short version." />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&family=Plus+Jakarta+Sans:wght@600;700;800&display=swap" rel="stylesheet" />
<link rel="stylesheet" href="css/styles.css" />
<link rel="stylesheet" href="css/legal.css" />
</head>
<body>
<header class="site-header">
<div class="container header-inner">
<a href="index.html" class="logo">EdFringe<span class="logo-now">Now</span></a>
<a href="index.html" class="legal-back">← Back</a>
</div>
</header>
<main class="legal">
<h1>Privacy</h1>
<p class="legal-updated">Last updated 2 July 2026</p>
<p class="legal-lede">The short version: no cookies, no tracking, no personal data — just an anonymous count of how many people visit.</p>
<p><strong>EdFringeNow is a static website.</strong> It runs entirely in your browser. There are no accounts, no sign-up, and no server of ours behind it — so there is nothing <em>about you</em> for us to receive, log, or keep.</p>
<p><strong>We don't sell your data, and we don't track you across the web.</strong> No ads. No advertising trackers. No cookies set by us. The one thing we do measure is anonymous, aggregate visitor numbers — see <a href="#analytics">Analytics</a> below.</p>
<h2 id="analytics">Analytics</h2>
<p>To understand roughly how many people use EdFringeNow, we use <a href="https://www.cloudflare.com/web-analytics/" target="_blank" rel="noopener">Cloudflare Web Analytics</a> — a privacy-first tool chosen precisely because it <strong>doesn't</strong> use cookies, doesn't store personal data, and can't identify you or follow you to other sites. It records anonymous, aggregate signals only: page views, the referring site, and a broad region worked out from your request (your IP address is used to derive that, but is never stored). No cross-site tracking, no advertising profile — which is also why there's no cookie-consent banner to click through.</p>
<h2>Your location</h2>
<p>If you allow location access, your position is used <strong>only in your browser</strong> to work out which shows are near you. It is never sent to us or to anyone else. Deny it and the app simply falls back to central Edinburgh — everything still works.</p>
<h2>What your browser loads</h2>
<p>Like any web page, opening EdFringeNow fetches a few files from other services. Those services see your IP address and browser as part of a normal web request, the same as visiting any website:</p>
<ul>
<li>Map tiles from <a href="https://www.openstreetmap.org/copyright" target="_blank" rel="noopener">OpenStreetMap</a>.</li>
<li>The map library (unpkg) and typefaces (Google Fonts) from their content delivery networks.</li>
<li>The privacy-first analytics beacon (a small script) from <a href="https://www.cloudflare.com/web-analytics/" target="_blank" rel="noopener">Cloudflare</a>.</li>
</ul>
<p>The show and venue listings are plain files served from this site. They describe the festival, not you.</p>
<h2>Links out</h2>
<p>“Open in Maps” opens Google Maps, and ticket links open edfringe.com. Once you follow a link, that site's own privacy policy applies — not this one.</p>
<h2>Questions</h2>
<p>Email <a href="mailto:support@edfringenow.com">support@edfringenow.com</a>.</p>
</main>
<footer class="legal-foot">
<p class="legal-foot-copy">© 2026 Missing Bulb</p>
<nav class="legal-foot-links" aria-label="More from EdFringeNow">
<a href="privacy.html">Privacy</a>
<a href="accessibility.html">Accessibility</a>
<a href="terms.html">Terms</a>
<a href="mailto:support@edfringenow.com">Contact</a>
</nav>
</footer>
<!-- Privacy-first, cookieless visitor analytics (see js/analytics.js) -->
<script defer src="js/analytics.js"></script>
</body>
</html>