-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlogs.html
More file actions
33 lines (33 loc) · 1.62 KB
/
logs.html
File metadata and controls
33 lines (33 loc) · 1.62 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2358a6ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><rect x='3' y='11' width='18' height='11' rx='2' ry='2'></rect><path d='M7 11V7a5 5 0 0 1 10 0v4'></path></svg>">
<title>Patch Feed - Fetch Logs</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=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="app">
<main class="main" style="max-width:900px;margin:0 auto">
<header class="topbar">
<h1 style="font-size:1.1rem;font-weight:700">Fetch Logs</h1>
<div class="topbar-actions">
<a href="index.html" class="text-btn">← Back to Patch Feed</a>
</div>
</header>
<div class="feed">
<div class="fetch-summary">
<div class="fetch-time" id="fetch-time"></div>
<div class="fetch-count" id="fetch-count" style="color:var(--accent);font-weight:500;margin-top:4px"></div>
</div>
<div id="detailed-logs" style="margin-top:20px"></div>
</div>
</main>
</div>
<script src="logs.js"></script>
</body>
</html>