-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
61 lines (54 loc) · 1.47 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
<html>
<head>
<link rel="stylesheet" type="text/css" href="view/style.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script>
</head>
<body>
<div class="header-wrap">
<h1 class="header-left" id="current-url"></h1>
<h2 class="header-right" id="status"></h2>
</div>
<table>
<tbody>
<thead>
<th colspan="2">AM Headlines<br/>
<small>This script was last run <span id="am-lastrun"></span></small>.
</th>
<th colspan="2">PM Headlines<br />
<small>This script was last run <span id="pm-lastrun"></span></small>.
</th>
</thead>
<tr>
<td class="am-images">
<p><small>Click to see full size version</small></p>
<a target="_blank" href="returned_data/home/images/captured-AM.png"><img width="100" src="returned_data/home/images/captured-AM.png"/></a>
</td>
<td class="am-headlines">
<ul>
</ul>
</td>
<td class="pm-images">
<p><small>Click to see full size version</small></p>
<a target="_blank" href="returned_data/home/images/captured-PM.png"><img width="100" src="returned_data/home/images/captured-PM.png"/></a>
</td>
<td class="pm-headlines">
<ul>
</ul>
</td>
</tr>
<tr>
<td>images</td>
<td class="am-images">
<ul>
</ul>
</td>
<td class="pm-images">
<ul>
</ul>
</td>
</tr>
</tbody>
</table>
<script src="view/main.js"></script>
</body>
</html>