-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgallery.html
51 lines (47 loc) · 1.98 KB
/
gallery.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
<!DOCTYPE html>
<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">
<meta name="description" content="artist arcade gallery">
<meta property="og:description" content="artist arcade gallery">
<meta property="og:title" content="artist arcade gallery">
<meta property="og:image" content="assets/imgs/preview.jpg">
<link rel="shortcut icon" href="assets/imgs/tess.ico" type="image/x-icon">
<link rel="apple-touch-icon" href="assets/imgs/touch.png">
<link rel="stylesheet" href="assets/css/style.css">
<title>artist arcade gallery</title>
</head>
<body>
<header>
<nav class="row">
<ul class="col-10 menu">
<li><a href="index"><img class="logo" src="assets/imgs/fireball.gif" alt="fireball logomark"></a></li>
<li><a href="index?post=1plfCCec5CueHpoVGbcqJL">About</a></li>
<li><a href="gallery">Gallery</a></li>
</ul>
</nav>
<button class="mobile-menu">Mobile Menu<span></span><span></span><span> </span></button>
<nav class="sliding-panel-content">
<ul class="menu">
<li><a href="index">Home</a></li>
<li><a href="index?post=1plfCCec5CueHpoVGbcqJL">About</a></li>
<li><a href="gallery">Gallery</a></li>
</ul>
</nav>
</header>
<div class="sliding-panel-fade-screen"></div>
<section class="gallery">
<h1 style="color:#fff">Gallery</h1>
<input type="text" id="tileSearch" placeholder="search for artists" onkeyup="search()">
<div id="gallery"></div>
</section>
<section class="footer">
<a href="https://twitter.com/artist_arcade" target="_blank">twitter</a>
</section>
</body>
<script src="assets/js/main.js"></script>
<script src="https://cdn.jsdelivr.net/remarkable/1.7.1/remarkable.min.js"></script>
<script src="assets/js/getTiles.js"></script>
</html>