-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
45 lines (35 loc) · 1.35 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
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<!DOCTYPE html>
<html ng-app="gdg">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>LumX</title>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<link rel="stylesheet" href="/build/gdg.css">
</head>
<body ng-controller="AppController">
<!-- Sidebar -->
<ng-include src="'includes/sidebar.html'"></ng-include>
<!-- Main container -->
<div class="main" ng-class="{ 'main--is-small': Layout.panelIsOpened }">
<!-- Header -->
<ng-include src="'includes/header.html'"></ng-include>
<!-- File list -->
<ng-include src="'includes/files.html'"></ng-include>
</div>
<!-- /Main container -->
<!-- Panel -->
<ng-include src="'includes/panel.html'"></ng-include>
<!-- Dialog -->
<ng-include src="'includes/dialog.html'"></ng-include>
<!-- Libs -->
<script src="/bower_components/jquery/dist/jquery.min.js"></script>
<script src="/bower_components/velocity/velocity.min.js"></script>
<script src="/bower_components/moment/min/moment-with-locales.min.js"></script>
<script src="/bower_components/angular/angular.js"></script>
<!-- App -->
<script src="app.js"></script>
<!-- LumX -->
<script src="/bower_components/lumx/dist/js/lumx.js"></script>
</body>
</html>