2021-01-01 17:35:15 -05:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<title>{{title}}</title>
|
|
|
|
<style>
|
|
|
|
body {background-color: D3D3D3;}
|
|
|
|
h1 {color: green;}
|
|
|
|
p {
|
|
|
|
padding: 10px;
|
|
|
|
margin: 20px;
|
|
|
|
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<p><img style="display: block; margin-left: auto; margin-right: auto;" src="{{logo}}" alt="Logo" width="300" height="144" /></p>
|
|
|
|
<h1 style="text-align: center;">{{title}}</h1>
|
|
|
|
<hr />
|
2021-01-01 17:44:08 -05:00
|
|
|
<table style="margin-left: auto; margin-right: auto;" border="black" cellspacing="3" cellpadding="3">
|
2021-01-01 17:35:15 -05:00
|
|
|
<tbody>
|
|
|
|
<tr>
|
|
|
|
<td>
|
2021-01-01 17:44:08 -05:00
|
|
|
<button onclick="window.location.href='/';">
|
|
|
|
Dashboard
|
|
|
|
</button>
|
2021-01-01 17:35:15 -05:00
|
|
|
</td>
|
|
|
|
<td>
|
2021-01-01 17:46:05 -05:00
|
|
|
<button onclick="window.location.href='about';">
|
2021-01-01 17:44:08 -05:00
|
|
|
About Dashboard
|
|
|
|
</button>
|
2021-01-01 17:35:15 -05:00
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
<hr />
|
|
|
|
This is a dashboard for the HBLink3 GPS/Data project, found at <a href="https://github.com/kf7eel/hblink3">https://github.com/kf7eel/hblink3</a>.
|
|
|
|
</body>
|
|
|
|
</html>
|