-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprivacy.html
More file actions
234 lines (192 loc) · 7.27 KB
/
Copy pathprivacy.html
File metadata and controls
234 lines (192 loc) · 7.27 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Privacy Notice | Iñaki Fuentes</title>
<meta name="description" content="Privacy notice and data collection policy for ifuentes.net">
<meta name="robots" content="noindex, follow">
<link rel="canonical" href="https://ifuentes.net/privacy.html">
<style>
:root {
--color-bg: #ffffff;
--color-text: #24292f;
--color-text-secondary: #57606a;
--color-link: #0969da;
--color-link-hover: #0550ae;
--color-border: #d0d7de;
--color-code-bg: #f6f8fa;
}
@media (prefers-color-scheme: dark) {
:root {
--color-bg: #0d1117;
--color-text: #e6edf3;
--color-text-secondary: #7d8590;
--color-link: #58a6ff;
--color-link-hover: #79c0ff;
--color-border: #30363d;
--color-code-bg: #161b22;
}
}
@media (prefers-contrast: more) {
:root {
--color-bg: #ffffff;
--color-text: #000000;
--color-text-secondary: #1a1a1a;
--color-link: #0000ee;
--color-link-hover: #0000cc;
--color-border: #000000;
--color-code-bg: #f0f0f0;
}
}
@media (prefers-color-scheme: dark) and (prefers-contrast: more) {
:root {
--color-bg: #000000;
--color-text: #ffffff;
--color-text-secondary: #e5e5e5;
--color-link: #4dabf7;
--color-link-hover: #74c0fc;
--color-border: #ffffff;
--color-code-bg: #1a1a1a;
}
}
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
line-height: 1.6;
color: var(--color-text);
background: var(--color-bg);
padding: 2rem;
max-width: 800px;
margin: 0 auto;
transition: background 0.3s ease, color 0.3s ease;
}
h1 {
font-size: clamp(2rem, 5vw, 2.5rem);
margin-bottom: 1.5rem;
font-weight: 700;
letter-spacing: -0.02em;
}
h2 {
font-size: 1.5rem;
margin: 2rem 0 1rem;
font-weight: 600;
padding-bottom: 0.5rem;
border-bottom: 1px solid var(--color-border);
}
p {
margin: 1rem 0;
color: var(--color-text-secondary);
}
strong {
color: var(--color-text);
font-weight: 600;
}
ul {
margin: 1rem 0 1rem 2rem;
color: var(--color-text-secondary);
}
li {
margin: 0.5rem 0;
}
a {
color: var(--color-link);
text-decoration: none;
font-weight: 500;
}
a:hover {
color: var(--color-link-hover);
text-decoration: underline;
}
a:focus-visible {
outline: 2px solid var(--color-link);
outline-offset: 3px;
border-radius: 3px;
}
.notice {
background: var(--color-code-bg);
border-left: 4px solid var(--color-link);
padding: 1rem;
margin: 1.5rem 0;
border-radius: 4px;
}
.notice p {
color: var(--color-text);
margin: 0;
}
code {
background: var(--color-code-bg);
padding: 0.2rem 0.4rem;
border-radius: 3px;
font-family: "SF Mono", Monaco, Consolas, monospace;
font-size: 0.9em;
}
footer {
margin-top: 3rem;
padding-top: 2rem;
border-top: 1px solid var(--color-border);
text-align: center;
color: var(--color-text-secondary);
font-size: 0.9rem;
}
@media (prefers-reduced-motion: reduce) {
*,
*::before,
*::after {
animation-duration: 0.01ms !important;
animation-iteration-count: 1 !important;
transition-duration: 0.01ms !important;
}
}
</style>
</head>
<body>
<main>
<h1>Privacy Notice</h1>
<p><strong>Last Updated:</strong> November 6, 2025</p>
<div class="notice">
<p><strong>TL;DR:</strong> This site currently uses <strong>no analytics</strong>, <strong>no cookies</strong>, and <strong>no tracking</strong>. Your privacy is respected. This notice explains what might change if analytics are added in the future.</p>
</div>
<h2>Current Data Collection</h2>
<p><strong>None.</strong> This website currently collects <strong>zero personal data</strong>.</p>
<p>The site is hosted on <strong>GitHub Pages</strong>, which may collect standard server logs (IP addresses, user agents, timestamps) for operational purposes. See <a href="https://docs.github.com/en/site-policy/privacy-policies/github-privacy-statement" target="_blank" rel="noopener noreferrer">GitHub's Privacy Statement</a> for details.</p>
<h2>If Analytics Are Added</h2>
<p>Should lightweight analytics be implemented in the future, this notice will be updated. Any analytics would prioritize:</p>
<ul>
<li><strong>Privacy-first approach</strong>: No personal identifiable information (PII) collected</li>
<li><strong>Aggregated data only</strong>: Page views, referrers, general geographic region</li>
<li><strong>No cookies</strong>: Stateless, ephemeral tracking</li>
<li><strong>GDPR compliant</strong>: Respecting Do Not Track (DNT) signals</li>
<li><strong>Transparency</strong>: Clear disclosure of tools used (likely Plausible or Fathom)</li>
</ul>
<h2>Third-Party Services</h2>
<p>This site links to external services (LinkedIn, Twitter, GitHub, etc.). These services have their own privacy policies:</p>
<ul>
<li><a href="https://www.linkedin.com/legal/privacy-policy" target="_blank" rel="noopener noreferrer">LinkedIn Privacy Policy</a></li>
<li><a href="https://twitter.com/en/privacy" target="_blank" rel="noopener noreferrer">Twitter Privacy Policy</a></li>
<li><a href="https://docs.github.com/en/site-policy/privacy-policies/github-privacy-statement" target="_blank" rel="noopener noreferrer">GitHub Privacy Statement</a></li>
</ul>
<p>Clicking external links may trigger their tracking mechanisms. All external links include <code>rel="noopener noreferrer"</code> to prevent referrer leakage where appropriate.</p>
<h2>Service Worker & PWA</h2>
<p>This site uses a <strong>Service Worker</strong> for offline functionality. Cached resources are stored locally in your browser. No data is transmitted to external servers. You can unregister the Service Worker at any time through your browser's developer tools.</p>
<h2>Your Rights</h2>
<p>Since no personal data is currently collected, there is nothing to access, delete, or port. If this changes:</p>
<ul>
<li>You will be notified via this page</li>
<li>You can opt out of any analytics</li>
<li>You can request data deletion</li>
</ul>
<h2>Changes to This Notice</h2>
<p>Updates to this privacy notice will be reflected with a new "Last Updated" date. Major changes will be announced prominently on the homepage.</p>
<h2>Contact</h2>
<p>Questions about privacy? Contact me at <a href="mailto:inaki@ifuentes.net">inaki@ifuentes.net</a> or via the <a href="/.well-known/security.txt">security.txt</a> contact methods.</p>
</main>
<footer>
<p>© 2025 Iñaki Fuentes | <a href="/">Back to Home</a> | <a href="/security-policy.html">Security Policy</a></p>
</footer>
</body>
</html>