-
Notifications
You must be signed in to change notification settings - Fork 10
/
404.html
188 lines (168 loc) · 5.98 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
<!DOCTYPE html>
<html>
<head>
<title>adobe.com: Page not found</title>
<script type="text/javascript">
window.isErrorPage = true;
window.errorCode = '404';
</script>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<script>
const i18n = {
br: {
title: 'Estas são águas desconhecidas.',
subtitle: 'Desculpe, essa página não pode ser encontrada.',
home: 'Vá para a página inicial ›',
search: 'Pesquisar em Adobe.com ›',
},
de: {
title: 'Die Seite wurde leider nicht gefunden.',
subtitle: '',
home: 'Zur Homepage ›',
search: 'Adobe.com durchsuchen ›',
},
en: {
title: 'These are uncharted waters.',
subtitle: 'Sorry, that page can\'t be found.',
home: 'Go to homepage ›',
search: 'Search Adobe.com ›',
},
es: {
title: 'Estas son aguas inexploradas.',
subtitle: 'Lo siento, no se puede encontrar esa página.',
home: 'Ir a la página de inicio ›',
search: 'Buscar en Adobe.com ›',
},
fr: {
title: 'La page que vous recherchez ne semble pas exister.',
subtitle: 'Désolé, la page ne peut être trouvée.',
home: 'Allez à l\'accueil ›',
search: 'Chercher sur Adobe.com ›',
},
it: {
title: 'Stai navigando in acque inesplorate.',
subtitle: 'Pagina non trovata.',
home: 'Vai alla home page ›',
search: 'Cerca su Adobe.com ›',
},
jp: {
title: '申し訳ございません。ページが見つかりません。',
subtitle: 'Sorry, that page can\'t be found.',
home: 'Go to homepage ›',
search: 'Search Adobe.com ›',
},
ko: {
title: '해당 페이지가 없습니다',
subtitle: '죄송합니다. 페이지를 찾을 수 없습니다.',
home: '홈페이지 가기',
search: '사이트 내 검색',
},
};
window.addEventListener('load', () => {
const { pathname } = document.referrer ? new URL(document.referrer) : new URL(window.location);
// default english
const lang = Object.keys(i18n).includes(pathname.split('/')[1]) ? pathname.split('/')[1] : 'en';
const title = document.getElementById('error-title');
title.textContent = i18n[lang].title;
const subtitle = document.getElementById('error-subtitle');
subtitle.textContent = i18n[lang].subtitle;
const home = document.getElementById('error-home');
home.textContent = i18n[lang].home;
const search = document.getElementById('error-search');
search.textContent = i18n[lang].search;
});
</script>
<script src="/hub/scripts/scripts.js" type="module" crossorigin="use-credentials"></script>
<style>
.error {
position: relative;
}
main.error div.section-wrapper {
margin-top: 0;
}
.error .error-img {
position: absolute;
object-fit: cover;
object-position: 70%;
height: 80vh;
z-index: -1;
width: 100vw;
}
.error .error-msg {
height: 80vh;
display: flex;
flex-direction: column;
justify-content: space-between;
}
.error a:any-link {
text-decoration: none;
}
.error .error-nav {
margin-top: 30px;
font-size: 16px;
}
.error .error-nav a {
color: #1473e6;
}
.error .error-nav a:hover,
.error .error-nav a:focus {
text-decoration: underline;
}
.error .error-nav ul {
list-style-type: none;
padding-left: 0;
}
.error .error-nav ul li {
margin: 8px 0;
}
.error .error-attr {
width: 100%;
font-size: 12px;
margin-bottom: 30px;
}
.error .error-attr img {
display: block;
height: 2rem;
width: 2rem;
}
.error .error-attr a {
color: #b1aba8;
font-style: normal;
}
main.error {
padding: 0;
margin: 0;
}
</style>
<link rel="stylesheet" href="/hub/styles/styles.css" />
<link rel="icon" href="data:,">
</head>
<body>
<header></header>
<!-- main content -->
<main class="error">
<img class="error-img" src="https://cc-prod.scene7.com/is/image/CCProdAuthor/404-1440x612_edge2?jpeg&jpegSize=300&wid=1440" alt="The Story Begins Here by Risfan Fardiansyah">
<div class="error-msg">
<div class="error-text" data-block-loaded="true">
<h2 id="error-title"></h2>
<p id="error-subtitle"></p>
<nav class="error-nav">
<ul>
<li><a id="error-home" href="/"></a></li>
<li><a id="error-search" href="https://adobe.com/search.html"></a></li>
</ul>
</nav>
</div>
<div class="error-attr" data-block-loaded="true">
<cite>
<a href="https://www.behance.net/rsvn" target="_blank">
<img src="https://www.adobe.com/content/dam/cc/icons/behance-brands.svg" alt="Behance logo" />
</a>
<a href="https://www.behance.net/rsvn" target="_blank">The Story Begins Here by Risfan Fardiansyah</a>
</cite>
</div>
</div>
</main>
<footer></footer>
</body>
</html>