-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·85 lines (64 loc) · 2.74 KB
/
index.html
File metadata and controls
executable file
·85 lines (64 loc) · 2.74 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<!DOCTYPE html>
<html ng-app>
<!-- w h e e l s _a n d_ b y t e s -->
<!-- h o m e -->
<head>
<!--Import Google Icon Font-->
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<!-- FontAwesome icons :D -->
<script src="https://use.fontawesome.com/8280dcd8f6.js"></script>
<!--Import jQuery before materialize.js-->
<script type="text/javascript" src="https://code.jquery.com/jquery-2.1.1.min.js"></script>
<!--Import materialize.css-->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.98.0/css/materialize.min.css">
<!-- Compiled and minified JavaScript -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.98.0/js/materialize.min.js"></script>
<!-- AngularJS ftw -->
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.0.3/angular.min.js"></script>
<!--Let browser know website is optimized for mobile-->
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<!-- LOCAL -->
<!-- le mi app controlleres -->
<!-- le mi custom css -->
<link rel="stylesheet" href="css/custom.css">
<!-- Custom Fonts -->
<link href="https://fonts.googleapis.com/css?family=Lato:300,400,700,300italic,400italic,700italic" rel="stylesheet" type="text/css">
</head>
<body class="grey darken-3">
<!-- navs -->
<nav>
<div class="nav-wrapper grey darken-3">
<div class="row">
<div class="col s12 l6">
<a href="index.html" class="brand-logo">[ wheels_and_bytes ]</a>
<a href="#" data-activates="mobile-demo" class="button-collapse"><i class="material-icons">menu</i></a>
</div>
<ul class="right hide-on-med-and-down">
<li><a href="blagger/">Blagger</a></li>
<li><a href="auto/">Auto Stuffs</a></li>
<li><a href="comp/">Comp Stuffs</a></li>
</ul>
<ul class="side-nav grey lighten-3 z-depth-5" id="mobile-demo">
<li><a href="blagger/">Blagger</a></li>
<li><a href="auto/">Auto Stuffs</a></li>
<li><a href="comp/">Comp Stuffs</a></li>
</ul>
</div>
</div>
</nav>
<script src="js/scripts.js"></script>
<div class="parallax-container">
<div class="parallax"><img src="img/bg/intro-bg.jpg"></div>
<!-- haedaers -->
<div data-ng-include="'header.html'"></div>
</div>
<!-- stuffs -->
<div data-ng-include="'content.html'"></div>
<div class="parallax-container">
<div class="parallax"><img src="img/bg/mgm-bg.jpg"></div>
</div>
<!-- <div data-ng-include="'forsale.html'"></div> -->
<!-- futters -->
<div data-ng-include="'footer.html'"></div>
</body>
</html>