-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.html
138 lines (133 loc) · 3.25 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
</head>
<body>
<style>
main {
font-family: monospace;
font-size: 14px;
}
.table {
width: 100%;
border-spacing: 0;
border-collapse: collapse;
text-align: left;
border: 0.08333rem solid #bfbfbf;
}
.table.table-striped tbody tr:nth-of-type(odd) {
background: #eee;
}
.table tbody tr.active,
.table.table-striped tbody tr.active {
background: #e6e6e6;
}
.table.table-hover tbody tr:hover {
background: #e6e6e6;
}
.table.table-scroll {
display: block;
overflow-x: auto;
padding-bottom: 0.5rem;
white-space: nowrap;
}
.table td {
overflow: hidden;
padding: 0.3rem 0.4rem 0.1rem;
text-overflow: ellipsis;
border: 0.08333rem solid #bfbfbf;
}
.table th {
font-weight: bold;
font-size: 1.25em;
padding: 0.3rem 0.4rem 0;
border-bottom: 0.08333rem solid black;
}
.table tbody th {
border: 0.08333rem solid #bfbfbf;
}
.table-gray {
font-size: 1em !important;
border-top: 2px dotted #ddd;
border-left: 4px solid #777;
background: #fff;
box-shadow: 2px 2px #ddd;
}
</style>
<main>
<table class="table table-gray" style="max-width: 500px">
<thead>
<tr>
<th>Feed</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<a href="/nyt/business.rss" target="_blank"
>/nyt/business.rss</a
>
</td>
</tr>
<tr>
<td>
<a href="/nyt/economy.rss" target="_blank">/nyt/economy.rss</a>
</td>
</tr>
<tr>
<td>
<a href="/nyt/us.rss" target="_blank">/nyt/us.rss</a>
</td>
</tr>
<tr>
<td>
<a href="/nyt/politics.rss" target="_blank"
>/nyt/politics.rss</a
>
</td>
</tr>
<tr>
<td>
<a href="/nyt/sunday-review.rss" target="_blank"
>/nyt/sunday-review.rss</a
>
</td>
</tr>
<tr>
<td>
<a href="/nyt/home-page.rss" target="_blank"
>/nyt/home-page.rss</a
>
</td>
</tr>
</tbody>
</table>
<br />
<table class="table table-gray" style="max-width: 500px">
<thead>
<tr>
<th colspan="2">Metadata</th>
</tr>
</thead>
<tr>
<td>Last refresh</td>
<td>{{LastUpdated}}</td>
</tr>
<tr>
<td>Refresh cadence</td>
<td>every 20 minutes</td>
</tr>
<tr>
<td>Source code</td>
<td>
<a href="https://github.com/cmoog/nytrss" target="_blank"
>github.com/cmoog/nytrss</a
>
</td>
</tr>
</table>
</main>
</body>
</html>