-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtemplate_es.html
More file actions
55 lines (47 loc) · 1.28 KB
/
template_es.html
File metadata and controls
55 lines (47 loc) · 1.28 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
<!doctype html>
<html lang="es">
<head>
<meta charset="utf-8">
<title>VerIP - Conozca su IP</title>
<!-- 1 -->
<style id="a">body{display:none !important;}</style>
<script>
if(self===top){var a=document.getElementById("a");a.parentNode.removeChild(a);}
else{top.location=self.location;}
</script>
<!-- 2 -->
<script async src="https://www.googletagmanager.com/gtag/js?id=%s"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', '%s');
</script>
<style>
body {
text-align: center;
font-family: sans-serif;
padding-left: 3em;
padding-right: 3em;
padding-top: 1em;
}
</style>
</head>
<body>
<header>
<img src="images/logo.png" alt="">
</header>
<main>
<section>
<p>Su IP es <b>%s</b></p>
<p>Disponible en formato <a href="/txt" target="_blank">txt</a> y <a href="/json" target="_blank">json</a>.</p>
</section>
</main>
<aside>
<img src="https://via.placeholder.com/468x60?text=Trabajos+Sucios+El+Tuerto">
</aside>
<footer>
<p>VerIP es un servicio hecho con esmero desde 2018.</p>
</footer>
</body>
</html>