forked from dphiffer/flickr-cc
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
28 lines (28 loc) · 888 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
24
25
26
27
28
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Flickr Free search</title>
<link rel="stylesheet" href="flickr-cc.css">
</head>
<body>
<div id="page">
<h1>flickr-free</h1>
<form action="./">
<input type="text" name="q">
<input type="submit" value="Search">
</form>
<div id="about">
A minimal one-word Flickr search utility for FREE photos. <br>(<a href="https://github.com/jessamynwest/flickr-free/">Github</a> for this, <a href="https://github.com/dphiffer/flickr-cc/">GitHub</a> for original)
<div id="see-also"></div>
</div>
<div id="photos"></div>
</div>
<script src="jquery-2.2.2.min.js"></script>
<script src="jquery.lazyload.min.js"></script>
<script src="flickr.js"></script>
<script src="flickr-cc.js"></script>
</script>
</body>
</html>