-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
51 lines (46 loc) · 1.8 KB
/
index.html
File metadata and controls
51 lines (46 loc) · 1.8 KB
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
46
47
48
49
50
51
<!DOCTYPE html>
<html lang="en" ng-app="myApp" class="no-js">
<head>
<meta charset="UTF-8">
<title></title>
<!-- Meta Tags & Favicon-->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="">
<meta name="author" content="">
<link rel="shortcut icon" type="image/x-icon" href="assets/icons/favicon.ico" />
<!-- Stylesheets -->
<link rel="stylesheet" media="all" href="css/build.css" />
<!-- Javascript -->
<script type="text/javascript" src="js/build.js" defer></script>
</head>
<body ng-controller="mainCtrl">
<h1 class="hide"></h1>
<div class="navbar-fixed">
<nav class="nav-wrapper light-blue">
<a href="#!" class="brand-logo pad-left hide-on-med-and-down waves-effect"><div class="flex">
<i class="mdi mdi-angularjs"></i><b>Logo</b>
</div></a>
<a href="#!" class="brand-logo hide-on-small-and-down hide-on-large-only waves-effect"><div class="flex">
<i class="mdi mdi-angularjs"></i><b>Logo</b>
</div></a>
<a href="#!" class="brand-logo name hide-on-med-and-up waves-effect"><b>Logo</b></a>
<ul class="right larger hide-on-med-and-down">
<li><a href="#!about" class="larger waves-effect">about</a></li>
<li><a class="btn waves-effect waves-light larger" href="#!contact"><b>CONTACT</b></a></li>
</ul>
<a href="#" data-activates="mobile-nav" class="pad-left button-collapse waves-effect"><i class="mdi mdi-menu"></i></a>
<ul class="side-nav light-blue" id="mobile-nav">
<li>
<a href="#!about" class="waves-effect center">about</a>
</li>
<li>
<a href="#!contact" class="waves-effect center">contact</a>
</li>
</ul>
</nav>
</div>
<div ng-view class="fade">
</div>
</body>
</html>