-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathcookies.html
83 lines (67 loc) · 3.01 KB
/
cookies.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
78
79
80
81
82
83
{% extends 'page.html' %}
{% block title %}Privacy policy – bustimes.org{% endblock %}
{% block canonical %}
<link rel="canonical" href="https://bustimes.org/privacy">
{% endblock canonical %}
{% block fuse %}
{% load static %}
<script src="{% static 'consent.js' %}"></script>
{% endblock fuse %}
{% block bodyclass %}narrow{% endblock %}
{% block content %}
<h1>Privacy policy</h1>
<p class="credit">
Last updated: <a href="https://github.com/jclgoodwin/bustimes.org/blob/main/busstops/templates/cookies.html">8 January 2025</a>
<p>
bustimes.org (“this website”) is owned and operated by Bus Times Ltd (“I”, “we”).
<p>
You can use most of this website freely without sharing any personal details. But:
<p>
Using the “edit vehicle information” feature requires an email address, to facilitate logging in, and so that I can contact you if necessary. If you create an account and log in, I may also record your IP address, to help identify and prevent abuse and vandalism.
<p>
If you <a href="/contact">email me</a>, I ask for your name and email address, in order that I can reply. I may forward your message to e.g. a bus operating company or transport authority, if they are better placed to help you, unless you ask me not to. My email is hosted by <a href="https://www.fastmail.com/privacy-first-company/">FastMail</a>.
<p>
If you <a href="/contact">ask me</a> to, I can delete and/or provide you with a copy of your user account and/or any emails you‘ve sent me.
<p>
This website embeds some content from third parties:
<ul class="bulleted">
<li>
map tiles from <a href="https://stadiamaps.com/privacy/">Stadia Maps</a>
<li>
analytics code from Google Analytics</a>
<li>
programmatic advertisements under the auspices of <a href="https://adfirstmedia.com/">AdFirst Media</a>, Google, and their partners
</ul>
<p>You can control how advertisers use cookies and personal information:</p>
<p><button type="button" class="button" onclick="window.__tcfapi('displayConsentUi', 2, function() {} );">Privacy settings</button></p>
<p>This website contains links to other websites. I am not responsible for the content of other websites.</p>
<h2>Cookies</h2>
<p>‘Cookies’ are small text files stored on your computer when you use some websites, including this one.</p>
<p>We use some cookies for the functionality of this website:</p>
<table>
<thead>
<tr>
<th scope="col">Name</th>
<th scope="col">Type</th>
<th scope="col">Purpose</th>
</tr>
</thead>
<tbody>
<tr>
<td>vehicleMap</td>
<td>local storage</td>
<td>Last viewed location on <a href="/map">the map</a></td>
</tr>
<tr>
<td>hideStops</td>
<td>local storage</td>
<td>Whether to show bus stops on <a href="/map">the map</a></td>
</tr>
<tr>
<td>sessionid</td>
<td>cookie</td>
<td>Remember if you have logged in</td>
</tr>
</tbody>
</table>
{% endblock content %}