-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
29 lines (29 loc) · 1.2 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
<!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">
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Indie+Flower">
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Pacifico">
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.5.8/angular.min.js"></script>
<script src="app.js"></script>
<title>Travels</title>
</head>
<body ng-app="TravelApplication" ng-controller="TravelController">
<div id="title">Travels.</div>
<div class="locations" ng-repeat="location in locations">
<div class="image_frame" ng-style="{'background-image':'url({{location.url}})'}">
<div class="text">
<div class="country">
{{location.country}}
</div>
<div class="date">
{{location.date}}
</div>
</div>
</div>
</div>
</body>
</html>