1
0
mirror of https://github.com/ohwgiles/laminar.git synced 2024-09-28 22:40:45 +00:00
ohwgiles_laminar/src/resources/index.html

56 lines
1.6 KiB
HTML
Raw Normal View History

2015-09-13 20:25:26 +00:00
<!doctype html>
<html ng-app="laminar">
<head>
<base href="/">
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
2015-09-20 17:57:05 +00:00
<link rel="apple-touch-icon-precomposed" href="/favicon-152.png">
2015-09-13 20:25:26 +00:00
<title>Laminar</title>
<script src="/js/angular.min.js"></script>
<script src="/js/angular-route.min.js"></script>
<script src="/js/angular-sanitize.min.js"></script>
<script src="/js/ansi_up.js" type="text/javascript"></script>
<script src="/js/Chart.min.js"></script>
<script src="/js/Chart.HorizontalBar.js"></script>
<link href="/css/bootstrap.min.css" rel="stylesheet">
<script src="/js/app.js"></script>
<style>
body, html { height: 100%; }
2015-09-26 20:54:27 +00:00
.navbar { margin-bottom: 0; }
2015-09-20 17:57:05 +00:00
.navbar-brand { margin: 0 -15px; padding: 7px 15px }
2015-09-26 20:54:27 +00:00
.navbar-brand>img { display: inline; }
2015-09-20 17:57:05 +00:00
a.navbar-btn { color: #9d9d9d; }
a.navbar-btn.active { color: #fff; }
a.navbar-btn:hover { color: #fff; text-decoration: none; }
a.navbar-btn:focus { color: #fff; }
2015-09-26 20:54:27 +00:00
dt,dd { line-height: 2; }
2015-09-13 20:25:26 +00:00
canvas {
width: 100% !important;
max-width: 800px;
height: auto !important;
}
.progress {
height: 10px;
margin-bottom: 0;
}
</style>
</head>
<body>
<nav class="navbar navbar-inverse">
<div class="container-fluid">
2015-09-20 17:57:05 +00:00
<div>
2015-09-26 20:54:27 +00:00
<a class="navbar-brand" href="/"><img src="/icon.png">{{title}}</a>
<a class="btn navbar-btn pull-right" href="/jobs">Jobs</a>
2015-09-20 17:57:05 +00:00
</div>
2015-09-13 20:25:26 +00:00
</div>
</nav>
2015-09-26 20:54:27 +00:00
<ol class="breadcrumb">
<li ng-repeat="n in bc.nodes track by $index"><a href="{{n.href}}">{{n.label}}</a></li>
<li class="active">{{bc.current}}</li>
</ol>
2015-09-13 20:25:26 +00:00
<div ng-view></div>
</body>
</html>