-
Notifications
You must be signed in to change notification settings - Fork 148
/
index.html
57 lines (47 loc) · 1.88 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
<!DOCTYPE html>
<html lang="en" ng-app="devmtnTravel">
<head>
<title>DevMtn Travels</title>
<!-- META INFO -->
<meta charset="UTF-8">
<meta name="description" content="DevMtn Travels app using ui-routes ">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!--RESET FILE -->
<link rel="stylesheet" href="reset.css">
<!--MAIN FILE-->
<link rel="stylesheet" href="styles.css">
<!-- View Styles -->
<link rel="stylesheet" href="app/about/about.css">
<link rel="stylesheet" href="app/about/adventurers/adventurers.css">
<link rel="stylesheet" href="app/about/contact/contact.css">
<link rel="stylesheet" href="app/locations/locations.css">
<link rel="stylesheet" href="app/packages/packages.css">
<link rel="stylesheet" href="app/booked/booked.css">
</head>
<body>
<main role="main">
<section class="home-page-top-container">
<header>
<nav>
<ul>
<!--Navigation Section-->
<li><a>Locations</a></li>
<li><a>Packages</a></li>
<li><a><img src="img/DevCircleWhite.svg" alt="DevMountain Logo"></a></li>
<li><a>About</a></li>
<li><a>Contact</a></li>
</ul>
</nav>
</header>
<h1 class="intro-text">Discover</h1>
</section>
<!-- Here we are placing the ui-view tag this is where our views will be injected when we change routes. -->
<ui-view></ui-view>
</main>
<!-- Including angular and ui-router then our javascript files. ORDER MATTERS -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/angular.js/1.4.7/angular.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/angular-ui-router/0.2.15/angular-ui-router.js"></script>
<!--Our Custom Script Files-->
<script src="app/app.js"></script>
</body>
</html>