-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathgallery.html
More file actions
99 lines (92 loc) · 3.18 KB
/
gallery.html
File metadata and controls
99 lines (92 loc) · 3.18 KB
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
<!DOCTYPE html>
<html lang="en">
<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, maximum-scale=1.0"
/>
<link
href="https://fonts.googleapis.com/css2?family=Poppins:wght@300&display=swap"
rel="stylesheet"
/>
<link
rel="apple-touch-icon"
sizes="180x180"
href="./images/icons/paintbrush-favicon/apple-touch-icon.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="./images/icons/paintbrush-favicon/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="./images/icons/paintbrush-favicon/favicon-16x16.png"
/>
<link
rel="manifest"
href="./images/icons/paintbrush-favicon/site.webmanifest"
/>
<link href="./stylesheets/base.css" rel="stylesheet" />
<link href="./stylesheets/layout.css" rel="stylesheet" />
<link href="./stylesheets/components.css" rel="stylesheet" />
<link href="./stylesheets/gallery.css" rel="stylesheet" />
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/@splidejs/splide@latest/dist/css/splide.min.css"
/>
<script
src="https://cdn.jsdelivr.net/npm/@splidejs/splide@latest/dist/js/splide.min.js"
defer
></script>
<script src="./scripts/gallery.js" defer></script>
<title>Etch a Sketch Gallery</title>
</head>
<body>
<header>
<nav>
<a href="./index.html" class="animated-arrow">
<span class="arrow left">
<span class="shaft"></span>
</span>
<span class="text">Etch A Sketch</span>
<span class="arrow right">
<span class="shaft"></span>
</span>
</a>
</nav>
<h1>Gallery</h1>
</header>
<main class="splide" id="main-carousel" aria-label="Gallery">
<div style="position: relative">
<div class="splide__arrows"></div>
<div class="splide__track">
<ul class="splide__list"></ul>
</div>
</div>
<ul id="thumbnails" class="thumbnails"></ul>
</main>
<footer>
<p>Thanks for playing!</p>
<p>
Copyright ©
<script>
const date = new Date();
document.write(date.getFullYear());
</script>
<a href="https://github.com/jugglingdev/" target="_blank"
>jugglingdev
<img
class="social-icon"
src="./images/icons/github-mark/github-mark-white.svg"
alt="GitHub social icon"
/></a>
</p>
</footer>
</body>
</html>