52 lines
982 B
Handlebars
52 lines
982 B
Handlebars
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
<meta name="description" content="">
|
|
|
|
<link rel="icon" type="image/svg+xml" href="/static/icon.svg">
|
|
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Ubuntu|Ubuntu+Mono&display=swap">
|
|
|
|
<title>snitch</title>
|
|
|
|
<style>
|
|
body {
|
|
color: white;
|
|
background-color: #302f3b;
|
|
font-family: 'Ubuntu', sans-serif;
|
|
}
|
|
|
|
th {
|
|
color: wheat;
|
|
}
|
|
|
|
td {
|
|
border: 0.1em solid #5b3f63;
|
|
padding: 0.5em;
|
|
font-family: 'Ubuntu Mono', mono;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<table>
|
|
<tr>
|
|
<th>Service</th>
|
|
<th>Severity</th>
|
|
<th>Time</th>
|
|
<th>Message</th>
|
|
<th>Location</th>
|
|
</tr>
|
|
{{#each messages}}
|
|
<tr>
|
|
<td>{{this.service}}</td>
|
|
<td>{{this.severity}}</td>
|
|
<td>{{this.time}}</td>
|
|
<td>{{this.message}}</td>
|
|
<td>{{this.location}}</td>
|
|
</tr>
|
|
{{/each}}
|
|
</table>
|
|
</body>
|
|
</html>
|