pbs/client/index.html

24 lines
619 B
HTML
Raw Normal View History

2015-03-13 21:03:11 +01:00
<!DOCTYPE html>
<html>
<head>
<title>Pert</title>
<link rel="stylesheet" href="bower_components/vis/dist/vis.min.css">
<style>
2015-03-14 09:42:05 +01:00
body { height: 100%; }
2015-03-13 21:03:11 +01:00
#pert {
2015-03-14 09:42:05 +01:00
height: 600px;
width: 100%;
2015-03-13 21:03:11 +01:00
border: 1px solid lightgray;
}
</style>
</head>
<body>
<script src="bower_components/jquery/dist/jquery.js"></script>
<script src="bower_components/vis/dist/vis.min.js"></script>
2015-03-30 12:47:38 +02:00
<script src="bower_components/moment/moment.js"></script>
2015-03-13 21:03:11 +01:00
<div id="pert"></div>
2015-03-30 12:47:38 +02:00
<!--<div id="timeline"></div>-->
2015-03-13 21:03:11 +01:00
<script src="pert-ui.js"></script>
</body>
</html>