-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
94 lines (75 loc) · 3.53 KB
/
Copy pathindex.html
File metadata and controls
94 lines (75 loc) · 3.53 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover">
<title>Salah Times - Jubail</title>
<!-- CSS files -->
<link rel="stylesheet" href="prayer-gradients.css">
<!--<link rel="stylesheet" href="weather-animations.css">-->
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="weather.css">
<link rel="stylesheet" href="weather-icons.css">
<!--<link rel="stylesheet" href="animations.css">-->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<!--Font Style-->
<link rel="stylesheet" href="fontsstyles.css">
<link href="dist/meteocons.css" rel="stylesheet">
<!-- PWA -->
<link rel="manifest" href="manifest.json">
<link rel="apple-touch-icon" href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><text y='.9em' font-size='90'>📿</text></svg>">
<link rel="shortcut icon" href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><text y='.9em' font-size='90'>📿</text></svg>" type="image/svg+xml">
</head>
<body>
<div class="container">
<div class="header">
<h1><i class="fas fa-mosque"></i> Salah Times</h1>
<div class="date-display" id="currentDate">Loading...</div>
<div class="hijri-date" id="hijriDate">Loading...</div>
<div class="location">
<i class="fas fa-map-marker-alt"></i>
<span id="locationText">Jubail, Saudi Arabia</span>
</div>
</div>
<div class="content">
<div id="errorMessage" style="display: none;"></div>
<div class="current-time">
<i class="fas fa-clock"></i>
<span id="currentTime">Loading...</span>
</div>
<div class="countdown">
<div class="countdown-title" id="countdownTitle">Next Prayer In:</div>
<div class="countdown-timer" id="countdownTimer">--:--:--</div>
</div>
<!-- Animation Container - Fajr Only -->
<div class="animation-container">
<div class="fajr-animation">
<div class="stars-container">
<div class="star star-1"></div>
<div class="star star-2"></div>
<div class="star star-3"></div>
<div class="star star-4"></div>
<div class="star star-5"></div>
</div>
<div class="moon-glow"></div>
</div>
</div>
<div class="prayer-grid" id="prayerGrid">
<div class="loading">
<i class="fas fa-spinner fa-spin"></i>
<div>Loading prayer times...</div>
</div>
</div>
</div>
<div class="footer">
<p>Prayer times for Jubail, Saudi Arabia | Data from Aladhan API</p>
</div>
</div>
<!-- JavaScript files at the END of body -->
<script src="config.js"></script>
<script src="location.js"></script>
<script src="script.js"></script>
<script src="weather.js"></script> <!-- This should be last -->
<script src="prayer-gradients.js"></script>
</body>
</html>