mirror of
https://github.com/prometheus/alertmanager
synced 2025-01-09 23:39:36 +00:00
23 lines
503 B
HTML
23 lines
503 B
HTML
<html>
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Alertmanager</title>
|
|
<link rel="stylesheet" href="https://unpkg.com/tachyons@4.5.3/css/tachyons.min.css"/>
|
|
</head>
|
|
|
|
<body>
|
|
<div id="app"></div>
|
|
</body>
|
|
|
|
<!-- Your source after making -->
|
|
<script type="text/javascript" src="/script.js"></script>
|
|
|
|
<!-- Removes splash and starts elm app. -->
|
|
<script type="text/javascript">
|
|
var node = document.getElementById('app');
|
|
var app = Elm.Main.embed(node);
|
|
</script>
|
|
|
|
</html>
|