pbs/index.html

20 lines
756 B
HTML
Raw Normal View History

2015-03-31 11:32:45 +02:00
<!DOCTYPE html>
<html ng-app="pertApp">
2015-03-31 11:32:45 +02:00
<head>
<title>Pert</title>
2015-03-31 18:32:13 +02:00
<meta charset="utf-8">
2015-03-31 11:32:45 +02:00
<link rel="stylesheet" href="bower_components/vis/dist/vis.min.css">
2015-03-31 18:13:29 +02:00
<link rel="stylesheet" href="bower_components/bootstrap/dist/css/bootstrap.css">
2015-03-31 17:54:00 +02:00
<link rel="stylesheet" href="dist/style.css">
<script src="bower_components/jquery/dist/jquery.js"></script>
<script src="bower_components/angular/angular.js"></script>
<script src="bower_components/angular-ui-router/release/angular-ui-router.js"></script>
<script src="bower_components/vis/dist/vis.min.js"></script>
<script src="dist/pert.js"></script>
<script src="dist/app.js"></script>
2015-03-31 11:32:45 +02:00
</head>
<body>
<div class="container" ui-view></div>
2015-03-31 11:32:45 +02:00
</body>
</html>