-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathindex.html
More file actions
27 lines (27 loc) · 810 Bytes
/
Copy pathindex.html
File metadata and controls
27 lines (27 loc) · 810 Bytes
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
<!DOCTYPE html>
<html lang="en" ng-app='art-app'>
<head>
<meta charset="UTF-8">
<title>Angular Example</title>
<link rel="stylesheet" href="../css/style.css">
</head>
<body ng-controller="MainCtrl">
<main class="main-section">
<header class="main-header">
<h1>Rijks Museum</h1>
<div class="search-box">
<input type="text" ng-model="searchQuery">
<input type="submit" value="search" ng-click="search()">
</div>
</header>
<section class="art-work">
<div ng-repeat="item in art" class="art-item" ng-if="item.webImage.url != null">
<img src="{{item.webImage.url}}" alt="">
<p>{{item.longTitle}}</p>
</div>
</section>
</main>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.3.13/angular.min.js"></script>
<script src="script.js"></script>
</body>
</html>