-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
113 lines (94 loc) · 4.79 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
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
<!DOCTYPE html>
<html lang="">
<head>
<meta charset="utf-8">
<title>Single Page App</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="/bower_components/bootstrap/dist/css/bootstrap.css?rel=1478941660941">
<link href="https://fonts.googleapis.com/css?family=Roboto+Mono" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="/public/builds/css/reset.css?rel=1478941660941">
<link rel="stylesheet" type="text/css" href="/public/builds/css/styles.css?rel=1478941660942">
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<header>
<nav class="navbar navbar-inverse navbar-fixed-top">
<div class="container">
<div class="logogit brandz">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" aria-expanded="false">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div> <!-- end of div navbar header -->
<div class="subheader-img">
<img class="img-responsive" src="public/builds/assets/images/gitlo.png" style="max-width:100px; margin:0 auto;">
<h1>MBZ Car Dealership</h1>
</div> <!-- end of div subheader-img brandz -->
</div> <!-- end of div logogit -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav navbar-right sopra">
<li id="contact"><a href="#">Contact</a></li>
<li id="active" class="active"><a href="#">Home <span class="sr-only">(current)</span></a></li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Resources <span class="caret"></span></a>
<ul class="dropdown-menu">
<li><a href="#">Segment 1</a></li>
<li><a href="#">Segment 2</a></li>
<li><a href="#">Segment 3</a></li>
<li role="separator" class="divider"></li>
<li><a href="#">Ext 4</a></li>
<li role="separator" class="divider"></li>
<li><a href="#">Ext 5</a></li>
</ul>
</li>
</ul> <!-- end of ul nav navbar-nav navbar-right -->
</div><!-- /.navbar-collapse -->
</div><!-- /.container-fluid -->
</nav>
</header>
<div class="mainContent">
<div class="container">
<div class="col-row">
<div class="col-md-12 maintop">
<div class="headline">
<h1>Hello MBZ,</h1>
<h3>Alright, This is an Multih3le API SPA. I'm going to serve
RESTful JSON data from Several API's, do something and try out
another one, and use Angular to go from one page API to another.
Maybe, change the Title, Paragraph, Car dealer logo and name, and
of course data from each API.
</h3>
</div> <!-- end of div headline -->
</div> <!-- end of div maintop -->
</div> <!-- end of div col -->
<section class="col-row">
<div class="mainmiddle">
<div class="col-lg-12 innermid">
<div class="apiarea">
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam
</p>
<p>quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
<p>consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse
cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non</p>
<p>proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
</div>
</div> <!-- end of div innermid -->
</div> <!-- end of div mainmiddle -->
</section> <!-- end of div row -->
</div> <!-- end of div container -->
</div> <!-- end of div mainContent -->
<script src="/bower_components/jquery/dist/jquery.js?rel=1478941660942"></script>
<script src="/bower_components/bootstrap/dist/js/bootstrap.js?rel=1478941660942"></script>
<script src="/bower_components/angular/angular.js?rel=1478941660942"></script>
<script src="/bower_components/angular-resource/angular-resource.js?rel=1478941660942"></script>
<script src="/public/builds/js/scripts.min.js?rel=1478941660942"></script>
</body>
</html>