-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathartist.php
60 lines (58 loc) · 2.75 KB
/
artist.php
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Artist Profiles</title>
<link rel="stylesheet" href="../css/foundation.css" />
<link rel="stylesheet" href="../css/style.css" />
<!-- jQuery -->
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.1/jquery.min.js"></script>
<!-- portfoliojs (unified with all dependencies) -->
<script src="../js/gallery/portfolio.pack.min.js"></script>
<script src="../js/script.js"></script>
</head>
<body>
<div id="profphoto" class="profphoto">
</div>
<div class="profpic-cover hide-for-small-only">
</div>
<div class="profpic-cover2">
</div>
<div class="profile row">
<div class="row">
<div id="artist-name" class="medium-12 columns"><h1>Artists</h1></div>
</div>
<div class="row">
<div class="medium-3 columns">
<ul class="personal-thumb">
<li><a href="#" class="previewimg" id="preview-img-1"><img src="../img/artist-1.jpg" /></a></li>
<li><a href="#" class="previewimg" id="preview-img-2"><img src="../img/artist-2.jpg" /></a></li>
<li><a href="#" class="previewimg" id="preview-img-3"><img src="../img/artist-3.jpg" /></a></li>
</ul>
</div>
<div id="bio-content" class="medium-9 columns">
<p>
Ennui kogi cronut, small batch banh mi freegan letterpress sartorial fingerstache seitan single-origin coffee fixie. Pop-up Helvetica Marfa, hella heirloom narwhal authentic Thundercats Kickstarter wolf twee shabby chic sriracha skateboard flexitarian. Retro Banksy tilde, beard art party direct trade crucifix mustache raw denim locavore freegan PBR&B Marfa YOLO meggings. Stumptown seitan cliche photo booth, try-hard gentrify fixie paleo Wes Anderson kale chips taxidermy.
</p>
</div>
</div>
</div>
<br>
<!-- artist picker -->
<div class="gallery-container row">
<div class="large-12 columns" id="content">
<div id="gallery" >
<img class="prof-thumb" artist="artist" data-src="../img/logo.png" />
<img class="prof-thumb" artist="cindy" data-src="../img/cindy-thumb.jpg" />
<img class="prof-thumb" artist="george" data-src="../img/george-thumb.jpg" />
<img class="prof-thumb" artist="marina" data-src="../img/marina-thumb.jpg" />
<img class="prof-thumb" artist="teck" data-src="../img/teck-thumb.jpg" />
<img class="prof-thumb" artist="cindy" data-src="../img/cindy-thumb.jpg" />
<img class="prof-thumb" artist="george" data-src="../img/george-thumb.jpg" />
<img class="prof-thumb" artist="marina" data-src="../img/marina-thumb.jpg" />
<img class="prof-thumb" artist="teck" data-src="../img/teck-thumb.jpg" />
</div> <!-- .gallery -->
</div>
</div>
</body>
</html>