-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (32 loc) · 1.3 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
<!doctype html>
<html class="no-js" lang="" ng-app="spotify">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>Spotify ♥ Angular</title>
<meta name="description" content="Photo booth Carles wolf, cornhole pop-up messenger bag craft beer salvia hella.">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="apple-touch-icon" href="apple-touch-icon.png">
<link rel="stylesheet" href="assets/css/normalize.css">
<link href='https://fonts.googleapis.com/css?family=Raleway:300,400,700' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="assets/css/application.css">
</head>
<body class="homepage">
<header class="app-header">
</header>
<div role="main">
<section class="hero">
<h1 class="hero__title">Spotify ♥ Angular</h1>
<h2 class="hero__subtitle">Add Songs to a Custom Playlist using Angular</h2>
</section>
<section class="main" ng-controller="UserController as user">
<div class="inner">
<add-song></add-song>
<search></search>
</div><!--inner-->
</section>
</div><!--main-->
<script src="assets/js/vendor/angular.min.js"></script>
<script src="assets/js/app.js"></script>
</body>
</html>