-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlatest.html
More file actions
79 lines (63 loc) · 2.28 KB
/
Copy pathlatest.html
File metadata and controls
79 lines (63 loc) · 2.28 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
76
77
78
79
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Commits PWA</title>
<link rel="manifest" href="./manifest.json">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="app app_layout">
<header>
<span class="header__icon">
<svg class="menu__icon no--select" width="24px" height="24px" viewBox="0 0 48 48" fill="#fff">
<path d="M6 36h36v-4H6v4zm0-10h36v-4H6v4zm0-14v4h36v-4H6z"></path>
</svg>
</span>
<span class="header__title no--select">PWA - Terbaru</span>
<button id="butRefresh" class="headerButton" aria-label="Refresh"></button>
</header>
<div class="menu">
<div class="menu__header"></div>
<ul class="menu__list">
<li>
<a href="index.html">Beranda</a>
</li>
<li>
<a href="latest.html">Commit</a>
</li>
</ul>
</div>
<div class="menu__overlay"></div>
<section class="card_container">
<h2 style="margin-top: 70px; text-align: center;">Commit Terbaru</h2>
<div class="container">
<section class="card first">
</section>
<section class="card second">
</section>
<section class="card third">
</section>
<section class="card fourth">
</section>
<section class="card fifth">
</section>
</div>
</section>
<div class="loader">
<svg viewBox="0 0 32 32" width="32" height="32">
<circle id="spinner" cx="16" cy="16" r="14" fill="none"></circle>
</svg>
</div>
<!-- Pesan Toast -->
<div class="toast__container"></div>
</div>
<script src="./js/app.js"></script>
<script src="./js/latest.js"></script>
<script src="./js/toast.js"></script>
<script src="./js/offline.js"></script>
<script src="./js/menu.js"></script>
</body>
</html>