forked from ruuvi/ruuvitracker_web
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·28 lines (25 loc) · 812 Bytes
/
index.html
File metadata and controls
executable file
·28 lines (25 loc) · 812 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<!DOCTYPE HTML>
<html lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>RuuviTracker</title>
<link rel="stylesheet" href="css/bootstrap/docs/assets/css/bootstrap.css" title="bootstrap" type="text/css" />
<link rel="stylesheet" href="vendor/Leaflet/dist/leaflet.css" />
<link rel="stylesheet" href="css/main.css" />
<script type="text/javascript" charset="utf-8">
var require = {
callback: function() {
require.config({paths: {app: 'app-built'}});
require(['app'], function(app) {
app.start();
})
}
}
</script>
<script src="vendor/requirejs/require.js"></script>
</head>
<body>
<div id="pages">
</div>
</body>
</html>