-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
99 lines (80 loc) · 3.45 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
<!---#################################
,ggg, gg
dP""Y8a 88 8I
Yb, `88 88 8I
`" 88 88 8I
88 88 8I
88 88 ,gggg,gg ,gggg,8I ,gggg,gg
88 ,88 dP" "Y8I dP" "Y8I dP" "Y8I
Y8b,___,d888 i8' ,8I i8' ,8I i8' ,8I
"Y88888P"88,,d8, ,d8b,,d8, ,d8b,,d8, ,d8b,
,ad8888P"Y8888P"`Y8P"Y8888P"`Y8P"Y8888P"`Y8
d8P" 88
,d8' 88
d8' 88
88 88
Y8,_ _,88
"Y888P"
################################## -->
<!DOCTYPE html>
<html ng-app="YadaWebApp">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<!-- Google sign-in -->
<title>The Yada</title>
<link rel="icon" href="./assets/yada-icon.png" media="screen" title="no title" charset="utf-8">
<!-- SCRIPTS -->
<!-- AngularJS core -->
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/angularjs/1.5.5/angular.min.js"></script>
<!-- Angular cookie wrapper library for client cookies -->
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/angularjs/1.5.5/angular-cookies.min.js"></script>
<!-- Angular's Router Library for SPA -->
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/angularjs/1.5.5/angular-route.min.js"></script>
<!-- Angular animations-->
<script src="https://cdnjs.cloudflare.com/ajax/libs/angular.js/1.5.5/angular-animate.min.js"></script>
<!-- Jquery -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
<!-- GSAP TweenMax animation library-->
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/1.18.5/TweenMax.min.js"></script>
<!-- STYLES -->
<link href='https://fonts.googleapis.com/css?family=Fugaz+One' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Ubuntu' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/4.2.0/normalize.min.css" media="screen" title="no title" charset="utf-8">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<!-- NAV -->
<!-- <nav class="nav" ng-controller="NavController">
<div class="jumbo">
<img class="logo" src="./assets/yada-icon.svg" alt="LOGO" />
<h1>The Yada</h1>
<span ng-show="logStatus.status">Thanks for keeping it brief <u>{{user.username}}!</u></span>
<ul id="nav-list">
<li><a ng-click="home()" href="#/">Home</a></li>
<li><a href="#/about">Yada Yada</a></li>
<li id='log'>
<a ng-show="!logStatus.status" href="#/login">Login</a>
<a ng-show="logStatus.status" href="#/logout">Logout</a>
</li>
</ul>
</nav> -->
<!-- MAIN -->
<section class="main-container">
<!-- ANGULAR VIEWS -->
<main class="views" ng-view id="view">
<!-- ANGULAR VIEWS -->
<!-- ANGULAR VIEWS -->
<!-- ANGULAR VIEWS -->
<!-- ANGULAR VIEWS -->
<!-- ANGULAR VIEWS -->
<!-- ANGULAR VIEWS -->
</main>
<!-- <footer>
<h6>by: Caleb Will Jon</h6>
</footer> -->
</section>
<!--MY SCRIPTS [angular app]-->
<script src="app.js" charset="utf-8"></script>
</body>
</html>