-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrgpd.html
More file actions
100 lines (98 loc) · 3.93 KB
/
rgpd.html
File metadata and controls
100 lines (98 loc) · 3.93 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
<!DOCTYPE HTML>
<html lang="es">
<head>
<title>MainU</title>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no"/>
<link rel="stylesheet" href="assets/css/main.css"/>
<link rel="shortcut icon" type="image/png" href="/favicon.png"/>
<noscript>
<link rel="stylesheet" href="assets/css/noscript.css"/>
</noscript>
<script src="assets/js/translate.js"></script>
<script>
const translate = new Translate();
const attributeName = 'data-tag';
let currentLng = 'es';
function load() {
translate.init(attributeName, currentLng);
translate.process();
}
function switchLang() {
if (currentLng === 'es') {
currentLng = 'eu';
} else {
currentLng = 'es';
}
translate.init(attributeName, currentLng);
translate.process();
}
</script>
</head>
<body class="is-preload" onload="load()">
<div id="wrapper">
<header id="header">
<h1><label data-tag="rgpd-title"></label></h1>
</header>
<div id="main">
<section id="content" class="main">
<div class="col-12">
<ul class="actions">
<li><a class="button" onclick="switchLang()"><label style="color:#ea2817"
data-tag="lang"></label></a></li>
</ul>
</div>
<h2><label data-tag="imprescindible-title"></label></h2>
<p><label data-tag="imprescindible-desc"></label></p>
<h2><label data-tag="tus-datos-title"></label></h2>
<p><label data-tag="tus-datos-desc"></label></p>
<hr>
<p>
<small><sup>1</sup>
<label data-tag="rgpd-foot-1"></label>
</small>
</p>
<p>
<small><sup>2</sup>
<label data-tag="rgpd-foot-2"></label>
</small>
</p>
</section>
<footer id="footer">
<section>
<h2><label data-tag="about"></label></h2>
<p><label data-tag="about-desc"></label></p>
<ul class="actions">
<li><a href="index.html"><label data-tag="main-link"></label></a></li>
<li><a href="contact.html"><label data-tag="contactanos"></label></a></li>
<li><a href="rgpd.html"><label data-tag="rgpd-link"></label></a></li>
</ul>
</section>
<section>
<h2><label data-tag="about-location"></label></h2>
<dl class="alt">
<dt><label data-tag="about-address"></label></dt>
<dd><label data-tag="about-address-desc"></label></dd>
<dt><label data-tag="about-email"></label></dt>
<dd><a href="mailto:dev@mainu.eus">dev@mainu.eus</a></dd>
</dl>
<ul class="icons">
<li><a href="https://github.com/mainu4u" class="icon fa-github"><span
class="label">GitHub</span></a></li>
</ul>
</section>
<p class="copyright"><b>MainU, 2019</b>. <label data-tag="html5up-reference"></label></p>
<p class="copyright"><a onclick="switchLang()"><label style="color:#ea2817"
data-tag="lang"></label></a></p>
</footer>
</div>
</div>
<script src="assets/js/jquery.min.js"></script>
<script src="assets/js/jquery.scrollex.min.js"></script>
<script src="assets/js/jquery.scrolly.min.js"></script>
<script src="assets/js/browser.min.js"></script>
<script src="assets/js/breakpoints.min.js"></script>
<script src="assets/js/util.js"></script>
<script src="assets/js/main.js"></script>
</body>
</html>