pbs/index.html

20 lines
756 B
HTML

<!DOCTYPE html>
<html ng-app="pertApp">
<head>
<title>Pert</title>
<meta charset="utf-8">
<link rel="stylesheet" href="bower_components/vis/dist/vis.min.css">
<link rel="stylesheet" href="bower_components/bootstrap/dist/css/bootstrap.css">
<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>
</head>
<body>
<div class="container" ui-view></div>
</body>
</html>