-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path404.html
More file actions
101 lines (96 loc) · 2.76 KB
/
404.html
File metadata and controls
101 lines (96 loc) · 2.76 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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8" />
<title>Nekuno</title>
<link rel="shortcut icon" type="image/x-icon" href="/assets/favicon.png" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="/assets/css/404.css" />
</head>
<body>
<div class="first-box">
<div class="first-bg">
</div>
<div class="first-content">
<header class="header">
<a href="/">
<img src="/assets/img/logo/full-foreground.svg" alt="Nekuno" />
</a>
<nav class="navlist">
<a href="/">La App</a>
<a href="/team/">Detrás de Nekuno</a>
</nav>
</header>
<div class="content">
<strong class="title">404</strong>
<p>Parece que esta página no existe</p>
<p>¿Quizás probando en otro espacio-tiempo?</p>
</div>
</div>
</div>
<footer>
<div class="about">
<img src="/assets/img/logo/full-background.svg" alt="Nekuno">
<p class="copyright">
© 2019 Nekuno <br />
Todos los derechos reservados <br />
Código abierto con licencia AGPL-3.0
</p>
</div>
<div class="links">
<div class="product">
<h4>Proyecto</h4>
<ul>
<li><a href="/">La App</a></li>
<li><a href="/team/">Detrás de Nekuno</a></li>
</ul>
</div>
<div class="support">
<h4>Soporte</h4>
<ul>
<!-- <li><a href="/contact/">Contacto</a></li> -->
<li><a href="/terms/">Términos de uso</a></li>
<li><a href="/privacy/">Política de privacidad</a></li>
</ul>
</div>
<div class="social">
<h4>Síguenos</h4>
<ul>
<li><a href="https://www.facebook.com/nekuners" target="_blank">
<img class="icon" src="/assets/img/social-facebook.svg" alt="Logo" />
<span>Facebook</span>
</a></li>
<li><a href="https://twitter.com/nekuners" target="_blank">
<img class="icon" src="/assets/img/social-twitter.svg" alt="Logo" />
<span>Twitter</span>
</a></li>
<li><a href="https://www.instagram.com/nekuners/" target="_blank">
<img class="icon" src="/assets/img/social-instagram.svg" alt="Logo" />
<span>Instagram</span>
</a></li>
<li><a href="https://github.com/nekuno" target="_blank">
<img class="icon" src="/assets/img/social-github.svg" alt="Logo" />
<span>Github</span>
</a></li>
</ul>
</div>
</div>
</footer>
<script>
(function(b, o, i, l, e, r) {
b.GoogleAnalyticsObject = l;
b[l] || (b[l] =
function() {
(b[l].q = b[l].q || []).push(arguments)
});
b[l].l = +new Date;
e = o.createElement(i);
r = o.getElementsByTagName(i)[0];
e.src = '//www.google-analytics.com/analytics.js';
r.parentNode.insertBefore(e, r)
}(window, document, 'script', 'ga'));
ga('create', 'UA-55709950-1');
ga('send', 'pageview');
</script>
</body>
</html>