index.html 1.94 KB
Newer Older
Thomas Bosch committed
1 2 3 4 5
<!doctype html>
<html class="no-js">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
6
<title>Spring Boot Admin</title>
Thomas Bosch committed
7 8
<meta name="description" content="">
<meta name="viewport" content="width=device-width">
9
<link rel="shortcut icon" type="image/x-icon" href="img/favicon.png" />
Thomas Bosch committed
10
<link href="https://fonts.googleapis.com/css?family=Varela+Round|Montserrat:400,700" rel="stylesheet" type="text/css">
11 12
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css" />
<link rel="stylesheet" type="text/css" href="css/main.css" />
Thomas Bosch committed
13
</head>
Thomas Bosch committed
14
<body ng-app="springBootAdmin">
Thomas Bosch committed
15 16 17 18 19 20 21 22 23
	<script type="text/javascript">
		// Work around Google font rendering issues in webkit browsers on Windows 7
		if (navigator.userAgent.indexOf("NT 6.1") != -1) {
			document.body.style.WebkitTextStroke = "0.5px";
		}
	</script>
	<div class="viewport">
		<header class="navbar header--navbar desktop-only">
			<div class="navbar-inner">
joshiste committed
24
				<div class="container-fluid" >
Thomas Bosch committed
25
					<div class="spring-logo--container">
klehner committed
26
						<a class="spring-logo" href="#"><span></span></a>
Thomas Bosch committed
27
					</div>
Thomas Bosch committed
28
					<div class="spring-logo--container">
klehner committed
29
						<a class="spring-boot-logo" href="#"><span></span></a>
Thomas Bosch committed
30
					</div>
31
					<ul class="nav pull-right">
joshiste committed
32
						<li class="navbar-link" ng-class="{active: $state.includes('apps') ||  $state.includes('overview')  }"><a ui-sref="overview">Applications</a></li>
33
						<li class="navbar-link" ng-class="{active: $state.includes('journal')}"><a ui-sref="journal">Journal</a></li>
Thomas Bosch committed
34
						<li class="navbar-link" ng-class="{active: $state.includes('about')}"><a ui-sref="about">About</a></li>
Thomas Bosch committed
35 36 37 38 39
					</ul>
				</div>
			</div>
		</header>
			<div class="main-body--wrapper">
Thomas Bosch committed
40
				<div ui-view></div>
Thomas Bosch committed
41
			</div>
42
		<footer class="footer"> 
Thomas Bosch committed
43
			<div class="container">
Thomas Bosch committed
44
				Code licensed under <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache Open Source</a>
Thomas Bosch committed
45 46 47
			</div>
		</footer>
	</div>
48 49
	
	<script src="js/app.js" type="text/javascript"></script>
Thomas Bosch committed
50 51
</body>
</html>