alertmanager/ui/app/index.html
Max Leonard Inden 0faf0f531f
Add Elm UI rewrite from github.com/stuartnelson3/am-ui with history
* Including glue between Alertmanager server and Elm UI.
* Rebuilding assets (ui/bindata.go).
* Exact commit: 'bd78de6b16bcefaacf4229304d439b33aa09cc72'
* Subdirectory: ui/app
2017-03-24 17:48:50 +01:00

22 lines
510 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"/>
<script src="https://use.fontawesome.com/b7508bb100.js"></script>
</head>
<body>
</body>
<!-- Your source after making -->
<script type="text/javascript" src="/script.js"></script>
<!-- Removes splash and starts elm app. -->
<script type="text/javascript">
var app = Elm.Main.embed(document.body);
</script>
</html>