-
Notifications
You must be signed in to change notification settings - Fork 0
/
logs.html
50 lines (50 loc) · 1.17 KB
/
logs.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>WebFeed Fetch Logs</title>
<link rel="icon" href="./icons/icon.png">
<link rel="stylesheet" href="./css/water.css">
<link rel="stylesheet" href="./css/logs.css">
<script src="./js/logs.js" type="module"></script>
</head>
<body>
<h1>Fetch Logs</h1>
<article class="summary">
<h2>Summary</h2>
<table>
<tr>
<th>Fetch Begin</th>
<td id="begin"></td>
</tr>
<tr>
<th>Fetch End</th>
<td id="end"></td>
</tr>
<tr>
<th>Feed Checked</th>
<td id="feedNum"></td>
</tr>
<tr>
<th>Articles Found</th>
<td id="newNum"></td>
</tr>
<tr>
<th>Articles Cleaned</th>
<td id="cleanNum"></td>
</tr>
</table>
</article>
<p>You can click the feed link to manage subscription.</p>
<main>
<div class="items"></div>
</main>
</body>
<template id="log-item">
<article>
<h2 class="type"></h2>
<div class="error"></div>
<ol class="urls"></ol>
</article>
</template>
</html>