-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (38 loc) · 992 Bytes
/
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
<!DOCTYPE html>
<html lang="en" ng-app="app">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Enjineer</title>
<link rel="stylesheet" href="css/master.css" />
</head>
<body ng-controller="appCtrl">
<nav class="navbar navbar-default navbar-fixed-top" role="navigation"
> <div class="navbar-header">
<i class="fa fa-3x fa-rocket"></i>
<strong>Enjineer</strong>
<p>Beta</p>
</div>
<button class="btn btn-large" type="button" ng-click="menu()">
<i class="fa fa-bars"></i>
</button>
</nav>
<div id="content">
<section id="sidebar">
<nav>
<h4>MetroGistics</h4>
<ul>
<li>
<a href="#/php">PHP</a>
</li>
<li>
<a href="#/js">JavaScript</a>
</li>
</ul>
</nav>
</section>
<div ng-view>Loading...</div>
</div>
<script src="js/enjineer.js"></script>
</body>
</html>