-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
103 lines (101 loc) · 4.15 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Jadwal Sholat - Abdi PR</title>
<meta name="title" content="Jadwal Sholat - Abdi PR" />
<meta
name="description"
content="Website simpel untuk mengetahui jadwal sholat di suatu tempat."
/>
<link rel="apple-touch-icon" href="assets/js-logo.jpg" />
<link rel="icon" type="image/png" href="assets/js-logo.jpg" />
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://abdi.es/" />
<meta property="og:title" content="Jadwal Sholat - Abdi PR" />
<meta
property="og:description"
content="Website simpel untuk mengetahui jadwal sholat di suatu tempat."
/>
<meta property="og:image" content="assets/js-banner.jpg" />
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content="https://abdi.es/" />
<meta property="twitter:title" content="Jadwal Sholat - Abdi PR" />
<meta
property="twitter:description"
content="Website simpel untuk mengetahui jadwal sholat di suatu tempat."
/>
<meta property="twitter:image" content="assets/js-banner.jpg" />
<link rel="stylesheet" href="style.css" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Nunito Sans&display=swap"
/>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/@shoelace-style/shoelace@2.14.0/cdn/themes/light.css"
/>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/@shoelace-style/shoelace@2.14.0/cdn/themes/dark.css"
/>
<script
type="module"
src="https://cdn.jsdelivr.net/npm/@shoelace-style/shoelace@2.14.0/cdn/shoelace-autoloader.js"
></script>
<script type="module">
await Promise.allSettled([customElements.whenDefined("sl-card")]);
document.body.classList.add("ready");
</script>
</head>
<body onload="document.documentElement.classList.add('sl-theme-light')">
<div id="header" class="header">
<h2 class="header-items">Jadwal Sholat</h2>
<span
id="themeIcon"
class="material-symbols-outlined header-items"
onclick="toggleTheme()"
style="cursor: pointer"
>light_mode</span
>
</div>
<div class="head">
<div class="column">
<div class="info">
<span class="material-symbols-outlined">calendar_month</span
><span id="hijriDate"></span>
</div>
<div class="info">
<span class="material-symbols-outlined">calendar_today</span
><span id="date"></span>
</div>
<div class="info">
<span class="material-symbols-outlined">access_time</span
><span id="current-time"></span>
</div>
</div>
<div class="infotext">
<span class="countdown" id="countdown"></span>
<sl-progress-bar
id="progressBar"
max="100"
class="progress"
></sl-progress-bar>
</div>
</div>
<div class="container" id="timingsContainer"></div>
<div class="footer">
Made with ❤️ by <a href="https://github.com/abdipr">Abdi</a>
</div>
<script src="script.js"></script>
</body>
</html>