-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
55 lines (33 loc) · 1.17 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
<!DOCTYPE html>
<html lang="en-us">
<link rel="stylesheet" type="text/css" href="main.css">
<script src="./imagesFetcher/config.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script type="text/javascript" data-main="./imagesFetcher/site.js" src="./imagesFetcher/require.js"></script>
<head>
<meta charset="utf-8">
<title>Flicker Search Engine</title>
<style type="text/css">
</style>
</head>
<body>
<div class="header">
<label><b>Ninja</b> Flickr</label>
<div class="search-bg">
<input type="text" id="id_tags" placeholder="Search">
<button id="searchBtn" ></button>
</div>
</div>
<div class="header2">
</div>
<button id="clearButton" class="buttonStyle">clear</button>
<div id="mainContent">
<div class="controller" data-bind="foreach: itemsObservables" >
<div class="tooltip" data-bind="click: $parent.select" >
<img data-bind="attr: { 'src': src ,'height':'200px' } , css: { 'selected': isSelected}" />
<span class="classic" data-bind="text: title"></span>
</div>
</div>
</div>
</body>
</html>