forked from dresseco/dresseco.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.html
100 lines (97 loc) · 3.16 KB
/
404.html
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="ca">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="robots" content="noindex, nofollow" />
<meta name="google" content="nositelinkssearchbox" />
<meta name="google" content="notranslate" />
<meta name="author" content="Dresseco, S.L." />
<meta name="description" content="HTTP error 404 page." />
<title>Pàgina no trobada | Dresseco</title>
<!--Favicon(s)-->
<link rel="icon" href="/assets/images/favicons/favicon.ico" sizes="any" />
<link
rel="icon"
type="image/png"
sizes="16x16"
href="/assets/images/favicons/favicon-16x16.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="/assets/images/favicons/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="192x192"
href="/assets/images/favicons/android-chrome-192x192.png"
/>
<link
rel="icon"
type="image/png"
sizes="194x194"
href="/assets/images/favicons/favicon-194x194.png"
/>
<link
rel="apple-touch-icon"
sizes="180x180"
href="/assets/images/favicons/apple-touch-icon.png"
/>
<link
rel="mask-icon"
href="/assets/images/favicons/safari-pinned-tab.svg"
color="#20c997"
/>
<link rel="manifest" href="/site.webmanifest" />
<meta name="application-name" content="Dresseco" />
<meta name="msapplication-tooltip" content="Dresseco" />
<meta name="msapplication-config" content="/browserconfig.xml" />
<meta name="msapplication-TileColor" content="#2d89ef" />
<meta
name="msapplication-TileImage"
content="/assets/images/favicons/mstile-144x144.png"
/>
<!--Logics and styles (JS & CSS)-->
<script src="/js/libraries.js"></script>
<script src="/js/main.js"></script>
<script src="/js/cart.js"></script>
<link href="/css/style.css" rel="stylesheet" />
<link href="/css/components.css" rel="stylesheet" />
<link href="/css/pages/404.css" rel="stylesheet" />
<script src="/components/header.js"></script>
<script src="/components/footer.js"></script>
<script src="/components/loading-screen.js"></script>
<noscript>
<meta http-equiv="refresh" content="0; url=/noscript" />
</noscript>
</head>
<dresseco-loading-screen></dresseco-loading-screen>
<dresseco-header></dresseco-header>
<body>
<div id="dresseco-404-page">
<div id="dresseco-404-page-container" class="container py-5">
<div id="dresseco-404-page-container-image">
<img
src="/assets/images/pages/404/404.png"
alt="HTTP error 404 image"
title="HTTP error 404 image"
/>
</div>
<span class="fw-bold fs-3 text-center"
>Sembla que no hi ha res aquí...</span
>
<button
id="dresseco-404-page-container-discover"
class="btn btn-primary fs-5"
onclick="location.href='/'"
>
<i class="bi bi-house-fill pe-2"></i><span>Tornar a l'inici</span>
</button>
</div>
</div>
</body>
<dresseco-footer></dresseco-footer>
</html>