mtinfo/app/index.html

29 lines
594 B
HTML
Raw Normal View History

2019-08-23 11:38:12 +02:00
<html>
2020-02-20 12:51:06 +01:00
<head>
<title>MT Info</title>
<link rel="stylesheet" href="css/bootstrap.min.css"/>
</head>
<body>
2020-02-20 15:31:23 +01:00
<div id="nav"></div>
2020-02-20 12:51:06 +01:00
<div class="container-fluid" id="app">
<br>
<h5 style="text-align: center;">Starting mtinfo...</h5>
</div>
2019-08-23 11:38:12 +02:00
2020-02-20 12:51:06 +01:00
<!-- libraries -->
2020-02-20 15:31:23 +01:00
<script src="js/lib/mithril.min.js"></script>
2020-02-20 12:51:06 +01:00
<!-- global namespace -->
2020-02-20 15:31:23 +01:00
<script type="text/javascript">
mtinfo = {};
2020-02-20 15:31:23 +01:00
</script>
2020-02-20 12:51:06 +01:00
<!-- exported data -->
2020-02-20 15:10:58 +01:00
<script src="data/nodes.js"></script>
<script src="data/recipes.js"></script>
2020-02-20 12:51:06 +01:00
<!-- init -->
<script src="js/bundle.js"></script>
2020-02-20 12:51:06 +01:00
</body>
2019-08-23 11:38:12 +02:00
</html>