-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
57 lines (51 loc) · 2.29 KB
/
index.html
File metadata and controls
57 lines (51 loc) · 2.29 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
<!doctype html>
<html lang="ja">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta
name="description"
content="東京大学駒場キャンパスのインタラクティブマップ。建物の階層図、ウォーターサーバー、自動販売機の位置を検索できます。"
/>
<meta
name="keywords"
content="駒場,キャンパス,マップ,東京大学,UTokyo,地図,建物,施設"
/>
<meta name="author" content="ut-code" />
<meta name="theme-color" content="#facc15" />
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://navi.utcode.net/" />
<meta property="og:title" content="Komaba-navi" />
<meta
property="og:description"
content="東京大学駒場キャンパスのインタラクティブマップ。建物の階層図、ウォーターサーバー、自動販売機の位置を検索できます。"
/>
<meta property="og:image" content="https://navi.utcode.net/og.png" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<meta property="og:locale" content="ja_JP" />
<meta property="og:site_name" content="Komaba-navi" />
<!-- Twitter Card -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:url" content="https://navi.utcode.net/" />
<meta name="twitter:title" content="Komaba-navi(駒場 キャンパスマップ)" />
<meta
name="twitter:description"
content="東京大学駒場キャンパスのインタラクティブマップ。建物の階層図、ウォーターサーバー、自動販売機の位置を検索できます。"
/>
<meta name="twitter:image" content="https://navi.utcode.net/og.png" />
<title>Komaba-navi(駒場 キャンパスマップ)</title>
<!-- Favicon -->
<link rel="icon" type="image/png" href="/src/assets/icon.png" />
<link
rel="stylesheet"
href="https://unpkg.com/leaflet@1.9.4/dist/leaflet.css"
/>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
<script src="https://unpkg.com/leaflet@1.9.4/dist/leaflet.js"></script>
</body>
</html>