-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·22 lines (19 loc) · 1.14 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html lang="en" data-ng-app="angle">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<meta name="description" content="{{app.description}}">
<meta name="keywords" content="app, responsive, angular, bootstrap, dashboard, admin">
<title data-ng-bind="::pageTitle()">Angle - Angular Bootstrap Admin Template</title>
<!-- Application styles-->
<link rel="stylesheet" href="dist/css/app.css" data-ng-if="!app.layout.isRTL">
<!-- Themes-->
<link rel="stylesheet" ng-href="{{app.layout.theme}}" data-ng-if="app.layout.theme">
</head>
<body data-ng-class="{ 'layout-fixed' : app.layout.isFixed, 'aside-collapsed' : app.layout.isCollapsed, 'layout-boxed' : app.layout.isBoxed, 'layout-fs': app.useFullLayout, 'hidden-footer': app.hiddenFooter, 'layout-h': app.layout.horizontal, 'aside-float': app.layout.isFloat, 'offsidebar-open': app.offsidebarOpen, 'aside-toggled': app.asideToggled}">
<div data-ui-view="" data-autoscroll="false" class="wrapper"></div>
<script src="dist/js/base.js"></script>
<script src="dist/js/app.js"></script>
</body>
</html>