-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
100 lines (75 loc) · 3.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<!DOCTYPE html>
<html lang="en" data-theme="html">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Unsplash API</title>
<meta name="description" content="Demonstration of Unsplash API capabilities">
<link rel="icon" href="assets/favicon/favicon.ico" type="image/x-icon">
<link rel="icon" type="image/png" href="assets/favicon/gallery32x32.png" sizes="32x32">
<link rel="icon" type="image/png" href="assets/favicon/gallery16x16.png" sizes="16x16">
<link href="assets/favicon/gallery96x96.png" rel="shortcut icon" type="image/x-icon">
<link href="assets/favicon/gallery96x96.png" rel="icon" type="image/x-icon">
<link rel="apple-touch-icon-precomposed" sizes="57x57" href="assets/favicon/gallery57x57.png">
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="assets/favicon/gallery72x72.png">
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="assets/favicon/gallery114x114.png">
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="assets/favicon/gallery144x144.png">
<script type="module" src="./js/theme-switcher.js"></script>
<link rel="stylesheet" href="stylesheets/style.css">
</head>
<body class="body" data-theme="body">
<!--============ Header ============-->
<header class="header" data-theme="header">
<div class="container container-header" data-theme="container-header">
<div class="logo-section">
<a class="logo" href="#main" title="Website logo. Click on it to return to the heading" data-theme="logo"></a>
<h1 class="header-title" data-theme="header-title">Unsplash API</h1>
</div>
<!-- /.logo-section -->
<div class="search-section">
<form class="search-form" action="#" method="get">
<button class="clear-button hidden" type="button" aria-label="Clear the search field"
title="Click to clear the search field" data-theme="clear-button">x</button>
<input class="search-field" type="search" name="search-field" placeholder="Search..."
aria-label="Search field" autofocus autocomplete="off">
<button class="search-button" type="submit" aria-label="Search image"
title="Click to submit your search request" data-theme="search-button"></button>
</form>
<button class="theme-switcher" title="Click to switch page color theme" data-theme="theme-switcher"></button>
</div>
<!-- /.search-section -->
</div>
<!-- /.container-header -->
</header>
<!-- /.header -->
<!--============ Main ============-->
<main class="main" id="main">
<article class="container container-main">
<h2 class="gallery-title"></h2>
<ul class="pagination hidden"></ul>
<p class="total-pages hidden"></p>
<div class="gallery"></div>
<!-- /.gallery -->
<div class="loader">Loading...</div>
</article>
<!-- /.article -->
</main>
<!-- /.main -->
<!--============ Footer ============-->
<footer class="footer" data-theme="footer">
<div class="container container-footer">
<p class="copyright">
<small>©</small>
<small>2022</small>
<a href="https://github.com/dobkir" target="_blank"><span class="github-icon"
title="Click to visit the author's GitHub"
data-theme="github-icon"> </span>dobkir</a>
</p>
</div>
<!-- /.container -->
</footer>
<!-- /.footer -->
<script type="module" src="./js/index.js"></script>
</body>
</html>