-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
404.html
86 lines (84 loc) · 2.07 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
---
permalink: /404.html
layout: default
title: 404
---
{% include header.html %}
<div class="top"></div>
<style type="text/css" media="screen">
.container {
margin: 10px auto;
max-width: 600px;
text-align: center;
}
h1 {
margin: 30px 0;
font-size: 8em;
line-height: 1;
letter-spacing: -1px;
color: #2384ba;
}
h3 {
margin-top: 10px;
}
strong {
font-size: 2em;
}
.button {
display: block;
margin-top: 30px;
border-radius: 10px;
}
.block {
background: #fff;
padding: 10px;
border-radius: 10px;
border: solid 2px #d9e6f0;
box-shadow: 0 4px 0 #d9e6f0;
}
@media screen and (max-width:700px) {
.block {
width: 100%;
margin: 0 0 16px 0;
text-align: left;
}
h3 {
text-align: center;
}
strong {
font-size: 1.6em;
}
h1 {
font-size: 6em;
}
}
@media screen and (max-width:640px) {
.container {
margin: 10px 20px;
}
}
</style>
<div class="container">
<h1>404</h1>
<p><strong>ページが見つかりません<br>Page not found</strong></p>
<div class="block">
<h3>404エラーってなに?</h3>
<p>ウェブサイトにアクセスしたときに、ウェブサイトがおいてある「サーバー」からうけとるメッセージのことを、HTTPステータスコードといいます。そのなかのひとつ、404は、「そのページはありませんよ」ということをあらわします。</p>
<p>The requested page could not be found.</p>
<!-- i18n対応しない代わりに、日本語(ひらがな対応)と英語両方の説明を書く -->
</div>
<a href="/" class="button" style="color: #2384ba">
トップにもどる / Go Back
</a>
</div>
{% capture logosrc %}
{% if jekyll.environment == "production" %}
https://res.cloudinary.com/nztm/image/fetch/c_fit,q_auto,f_auto/{{ site.url }}
{% endif %}
{% if site.lang == "ja" or site.lang == "kana" %}
/assets/images/logo_yoko.svg
{% else %}
/assets/images/logo_yoko_english.svg
{% endif %}
{% endcapture %}
{% include footer.html %}