-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
50 lines (44 loc) · 1.55 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="description" content="">
<title>The Gallery of Horns</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/base.css">
<link rel="stylesheet" href="css/layouts.css">
<link rel="stylesheet" href="css/modules.css">
<link href="https://fonts.googleapis.com/css2?family=Handlee&display=swap" rel="stylesheet">
<script id="photo-template" type="text/x-tmpl-mustache">
<div>
<h2>{{title}}</h2>
<img src={{image_url}} alt="{{title}}" class="pic-display">
<p>{{description}}</p>
</div>
</script>
</head>
<body>
<header>
<h1>The Gallery of Horns</h1>
<select class="filter">
<option class="options" value="default">Filter by Keyword</option>
</select>
<!-- <select class="horns-filter">
<option value="default">Filter by # of Horns</option>
</select> -->
<button type="button" id="clear-filter">Clear Filter</button>
<button type="button" class="sort">Sort A-Z</button>
<button id="pageOne">1</button>
<button id="pageTwo">2</button>
</header>
<main>
<section id="picsId">
</section>
</main>
<script src="https://code.jquery.com/jquery-3.2.1.js"></script>
<script src="https://unpkg.com/mustache@latest"></script>
<script src="js/app.js"></script>
</body>
</html>