-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprivacy.html
More file actions
83 lines (83 loc) · 3.9 KB
/
privacy.html
File metadata and controls
83 lines (83 loc) · 3.9 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content="「VTresMarias - V三人のマリア - 」">
<title>privacy policy</title>
<link rel="icon" href="/assets/web/favicon_light.png" type="image/x-icon">
<link rel="icon" href="/assets/web/favicon_dark.png" type="image/x-icon" media="(prefers-color-scheme: dark)">
<link rel="apple-touch-icon" href="/assets/web/apple-touch-icon.png" type="image/x-icon">
<!-- <link rel="manifest" href="/pwa/pwa.json"> -->
<meta name="theme-color" content="#3d374c">
<meta name="msapplication-TileColor" content="#3d374c">
<meta name="msapplication-navbutton-color" content="#3d374c">
<meta name="apple-mobile-web-app-status-bar-style" content="#3d374c">
<!-- custom css -->
<link rel="stylesheet" href="/assets/frameworks/css/_main.css" type="text/css" media="all"> <!-- base -->
<style type="text/css">
/* in-page css */
@import url("/assets/frameworks/css/base.css");
@import url("/assets/frameworks/css/nav/index/home.css"); /* required for other css to work */
</style>
<!-- custom js -->
<script src="/assets/frameworks/js/_main.js" type="text/javascript"></script> <!-- base -->
<script type="text/javascript">
function pageInit() {
// pageInit() args here
}
</script>
<script type="text/javascript">
// in-page javascript
</script>
</head>
<body onload="{ init(); }">
<div id="loadBlock"> <!-- splash screen -->
<img id="loaderFade" src="/assets/web/load_icon.png" alt="">
</div>
<header> <!-- desktop header -->
<img id="vtmLogoHead" src="/assets/web/vtm_logoWide.svg" alt="「VTresMarias - V三人のマリア - 」">
<div class="urlRefs">
<span class="material-symbols-rounded" title="home" onclick="{ window.location.replace('/'); }">home</span>
</div>
</header>
<div id="privacy"> <!-- /privacy -->
<div class="titleHead">
<div>
<h1>privacy policy</h1>
<br>
<p>enforced 27 Dec 2024</p>
</div>
</div>
<div privacyPolicy>
<p>
VTresMarias (the "Organization") only uses the most basic cookie data that
only enables core functionality. we do not collect sensitive nor personal data
related to our site visitors (the "Customers").
</p>
<p>
these measures -- including only committing to the basic functions of cookies
-- help us maintain compliance with relevant data and privacy regulations
around the world; including the US' California Data Privacy Law (CCPA/CPRA)
and EU's General Data Protection Regulation (GDPR).
</p>
<p>
for more information and to request assistance regarding our handling of data,
send us an email at
<a rel="noopener noreferrer" href="mailto:vtresmarias@outlook.jp" target="_self">vtresmarias@outlook.jp</a>.
</p>
</div>
</div>
<footer>
<span>©2022 「VTresMarias - V三人のマリア - 」</span>
<span class="socialsV2">
<i class="bi bi-envelope-at-fill" title="email" onclick="{ window.open('mailto:vtresmarias@outlook.jp', '_self'); }"></i>
<i class="bi bi-twitter-x" title="X" onclick="{ window.open('https://x.com/VTresMarias'); }"></i>
<i class="bi bi-bluesky" title="bluesky" onclick="{ window.open('https://vtresmarias.bsky.social'); }"></i>
<i class="bi bi-facebook" title="facebook" onclick="{ window.open('https://facebook.com/VTresMarias2022'); }"></i>
<i class="bi bi-youtube" title="youtube" onclick="{ window.open('https://youtube.com/@V三人のマリア'); }"></i>
<i class="bi bi-github" title="github" onclick="{ window.open('https://github.com/VTresMarias'); }"></i>
</span>
</footer>
</body>
</html>