mirror of
https://github.com/fluencelabs/dashboard
synced 2024-12-04 15:20:21 +00:00
28 lines
901 B
HTML
28 lines
901 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta http-equiv="x-ua-compatible" content="ie=edge" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Elm Ui Explorer</title>
|
|
<link
|
|
rel="stylesheet"
|
|
type="text/css"
|
|
href="https://cdn.jsdelivr.net/gh/kalutheo/elm-ui-explorer@master/assets/styles.css"
|
|
/>
|
|
<link rel="preconnect" href="https://fonts.gstatic.com">
|
|
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@200;400;500&display=swap" rel="stylesheet">
|
|
<link rel="stylesheet" type="text/css"href="main.css">
|
|
</head>
|
|
|
|
<body class="overflow-hidden">
|
|
<div id="root"></div>
|
|
<script src="explorer.js"></script>
|
|
<script type="text/javascript">
|
|
var app = Elm.Explorer.init({
|
|
node: document.getElementById("root")
|
|
})
|
|
</script>
|
|
</body>
|
|
</html>
|