mirror of https://github.com/portainer/portainer
43 lines
1.4 KiB
HTML
43 lines
1.4 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en" ng-app="<%= pkg.name %>">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Portainer</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta name="description" content="">
|
|
<meta name="author" content="<%= pkg.author %>">
|
|
|
|
<link href="css/vendor.css" rel="stylesheet">
|
|
<link href="css/<%= pkg.name %>.css" rel="stylesheet">
|
|
|
|
<!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
|
|
<!--[if lt IE 9]>
|
|
<script src="//html5shim.googlecode.com/svn/trunk/html5.js"></script>
|
|
<![endif]-->
|
|
|
|
<script src="js/angular.js"></script>
|
|
<script src="js/vendor.js"></script>
|
|
<script src="js/<%= pkg.name %>.js"></script>
|
|
|
|
<!-- Fav and touch icons -->
|
|
<link rel="shortcut icon" href="ico/favicon.ico">
|
|
<link rel="apple-touch-icon-precomposed" href="ico/apple-touch-icon-precomposed.png">
|
|
</head>
|
|
|
|
<body ng-controller="MainController">
|
|
<div id="page-wrapper" ng-class="{open: toggle && $state.current.name !== 'auth' && $state.current.name !== 'endpointInit', nopadding: $state.current.name === 'auth' || $state.current.name === 'endpointInit'}" ng-cloak>
|
|
|
|
<div id="sideview" ui-view="sidebar"></div>
|
|
|
|
<div id="content-wrapper">
|
|
<div class="page-content">
|
|
|
|
<!-- Main Content -->
|
|
<div id="view" ui-view="content"></div>
|
|
|
|
</div><!-- End Page Content -->
|
|
</div><!-- End Content Wrapper -->
|
|
</div><!-- End Page Wrapper -->
|
|
</body>
|
|
</html>
|