1ea9bfbae8
Change-Id: I424c1d49388bbcc6155f0d4e632c0754d4973e7d
29 lines
657 B
HTML
29 lines
657 B
HTML
<!doctype html>
|
|
<html11>
|
|
|
|
<head>
|
|
<title>Compass</title>
|
|
<meta charset="utf-8">
|
|
<meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0" name="viewport">
|
|
<link rel="stylesheet" type="text/css" href="assets/css/compass.min.css">
|
|
|
|
<script data-main="src/main.js" src="requirejs/require.js"></script>
|
|
|
|
</head>
|
|
|
|
<body ng-controller="appController">
|
|
<div ng-if="isAuthenticated">
|
|
<div ng-controller="topnavCtrl">
|
|
<div ng-include="'src/app/partials/topnav.tpl.html'"></div>
|
|
</div>
|
|
</div>
|
|
<div class="main-container no-skin">
|
|
|
|
<div ui-view></div>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|