-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdsle.html
More file actions
27 lines (26 loc) · 985 Bytes
/
dsle.html
File metadata and controls
27 lines (26 loc) · 985 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="robots" content="noindex">
<title>Days Since Last Expedite</title>
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body class="bg-gray-950 text-white flex items-center justify-center min-h-screen">
<div class="text-center">
<h1 class="text-xl text-gray-400 mb-4">Days since last expedite:</h1>
<div id="dayCount" class="text-9xl font-extrabold bg-gradient-to-r from-teal-400 to-indigo-500 text-transparent bg-clip-text">
--
</div>
</div>
<script>
// const startDate = new Date('2025-06-20T22:30:00Z');
const startDate = new Date('2025-08-26T13:08:00Z');
const now = new Date();
const diffMs = now - startDate;
const daysPassed = Math.floor(diffMs / (1000 * 60 * 60 * 24));
document.getElementById('dayCount').textContent = daysPassed;
</script>
</body>
</html>