-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
75 lines (70 loc) · 2.3 KB
/
index.html
File metadata and controls
75 lines (70 loc) · 2.3 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="color-scheme" content="light dark" />
<title>WebApps - ミニアプリ ダッシュボード</title>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0&display=swap"
rel="stylesheet"
/>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-XMQZP3GPCC"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "G-XMQZP3GPCC");
</script>
<link rel="stylesheet" href="css/style.css" />
</head>
<body>
<header class="top-app-bar">
<div class="top-app-bar__content">
<span class="material-symbols-outlined top-app-bar__icon">apps</span>
<h1 class="top-app-bar__title">WebApps</h1>
</div>
</header>
<section class="hero">
<h2 class="display-medium">ミニアプリ ダッシュボード</h2>
<p class="body-large hero__subtitle">
さまざまなWebアプリを一覧・検索できます
</p>
<div class="search-bar">
<span class="material-symbols-outlined search-bar__icon">search</span>
<input
type="text"
id="search"
class="search-bar__input"
placeholder="アプリを検索..."
autocomplete="off"
/>
</div>
</section>
<main>
<div id="app-grid"></div>
</main>
<footer>
<a
href="https://github.com/HansRobo/webapps"
class="footer__link"
target="_blank"
rel="noopener noreferrer"
>
<span class="material-symbols-outlined">code</span>
GitHub でソースを見る
</a>
</footer>
<noscript>
<p style="text-align: center; padding: 2rem">
このページの表示にはJavaScriptが必要です。
</p>
</noscript>
<script src="js/app.js"></script>
</body>
</html>