-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtemplate.html
More file actions
66 lines (59 loc) · 1.27 KB
/
template.html
File metadata and controls
66 lines (59 loc) · 1.27 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
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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="main">
<h1>%TITLE</h1>
<h2>%SUBTITLE</h2>
<div class="row">
<div class="column">
<h3>Event information</h3>
<table>
<tr>
<td class="left">evid:</td>
<td class="right">%EVID</td>
</tr>
<tr>
<td class="left">date:</td>
<td class="right">%DATE</td>
</tr>
<tr>
<td class="left">lat:</td>
<td class="right">%LAT</td>
</tr>
<tr>
<td class="left">lon:</td>
<td class="right">%LON</td>
</tr>
<tr>
<td class="left">depth:</td>
<td class="right">%DEPTH</td>
</tr>
<tr>
<td class="left">mag:</td>
<td class="right">%MAG</td>
</tr>
</table>
</div>
<div class="column">
<h3>%PGA_TITLE</h3>
<table>%ROWS
</table>
</div>
</div> <!--row-->
</div> <!--main-->
<img class="map" src="%MAP"></img>
<br>
<img class="pga_dist" src="%PGA_DIST"></img>
<br>
<div class="footer">
<img class="logo" src="logo_file.png"></img>
<img class="logo" src="logo2_file.png"></img>
<span class="footer_text">
%FOOTER_TEXT
</span>
<div>
</body>
</html>