-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
126 lines (112 loc) · 3.93 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>PokéJisho | ポケ辞書</title>
<!-- Fav Icon -->
<link
rel="icon"
type="image/png"
href="https://old.pokejisho.com/favicon.png"
/>
<!-- Google -->
<meta
name="description"
content="PokéJisho is a Pokémon Japanese-English diciontary. ポケ辞書はポケモンの和英辞書です。 Look up the names of Pokémon, abilities, items, moves, and natures in Japanese and English."
/>
<meta
name="keywords"
content="japanese, PokéJisho, english, pokémon, pokemon, pocket monsters, dictionary, jisho, sun, moon 辞書, ポケモン, 英語, 日本語, ポケ辞書"
/>
<meta name="application-name" content="PokéJisho | ポケ辞書" />
<!-- Facebook -->
<meta property="og:title" content="PokéJisho | ポケ辞書" />
<meta property="og:type" content="article" />
<meta
property="og:image"
content="https://old.pokejisho.com/img/share.jpg"
/>
<meta
property="og:description"
content="PokéJisho is a Pokémon Japanese-English diciontary. ポケ辞書はポケモンの和英辞書です。 Look up the names of Pokémon, abilities, items, moves, and natures in Japanese and English."
/>
<!-- Twitter -->
<meta name="twitter:card" content="summary" />
<meta name="twitter:title" content="PokéJisho | ポケ辞書" />
<meta
name="twitter:description"
content="PokéJisho is a Pokémon Japanese-English diciontary. ポケ辞書はポケモンの和英辞書です。 Look up the names of Pokémon, abilities, items, moves, and natures in Japanese and English."
/>
<meta
name="twitter:image"
content="https://old.pokejisho.com/img/share.jpg"
/>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/normalize/5.0.0/normalize.min.css"
/>
<link rel="stylesheet" href="/ja-fonts/mikes-japanese-fonts.css" />
<link rel="stylesheet" href="/css/homepage.css" />
<script src="/js/cookies.js"></script>
<script src="/js/redirect.js"></script>
<meta name="theme-color" content="#CDDC39" />
<script
defer
data-domain="pokejisho.com"
src="https://plausible.michaelcharl.es/js/script.js"
></script>
</head>
<body>
<div class="homepage-container">
<div class="main-logo"></div>
<h1>Poké<span class="green">Jisho</span></h1>
<div class="language-select">
<a class="en" href="/en/jisho">English</a
><a class="ja" href="/ja/jisho">日本語</a>
</div>
<footer>
<div class="footer-content">
<p>
Pokémon and its trademarks are ©1995-
<script>
document.write(new Date().getFullYear());
</script>
Nintendo, Creatures, and GAMEFREAK.
</p>
<p>
PokéJisho is an unofficial educational Pokémon fansite. The
PokéJisho web app itself is under an MIT license.
<a href="https://github.com/mca62511/pokejisho"
>See the repository on GitHub.</a
>
</p>
</div>
</footer>
</div>
</body>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
<script>
(function (i, s, o, g, r, a, m) {
i["GoogleAnalyticsObject"] = r;
(i[r] =
i[r] ||
function () {
(i[r].q = i[r].q || []).push(arguments);
}),
(i[r].l = 1 * new Date());
(a = s.createElement(o)), (m = s.getElementsByTagName(o)[0]);
a.async = 1;
a.src = g;
m.parentNode.insertBefore(a, m);
})(
window,
document,
"script",
"https://www.google-analytics.com/analytics.js",
"ga"
);
ga("create", "UA-74758128-4", "auto");
ga("send", "pageview");
</script>
</html>