-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
23 lines (23 loc) · 841 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<link rel="shortcut icon" href="#"/>
<link rel="stylesheet" href="styles/default.css">
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Open+Sans">
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.5.8/angular.min.js"></script>
<script src="app.js"></script>
<title>Christmas Wishes</title>
</head>
<body ng-app="ChristmasApplication" ng-controller="ChristmasController">
<div id="title">Christmas Wishes</div>
<div id="wishes">
<div class="wish" ng-repeat="wish in wishes">
<div class="brand">{{wish.brand}}</div>
<div class="title"><a href="{{wish.url}}" target="_blank">{{wish.title}}</a></div>
<div class="subtitle">{{wish.details}}</div>
<div class="price">{{wish.price}}</div>
</div>
</div>
</body>
</html>