-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprints.html
74 lines (68 loc) · 2.71 KB
/
prints.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Prints</title>
<link rel="stylesheet" href="./styles/style.min.css">
<!-- Handlebar.js-->
<script src="https://cdn.jsdelivr.net/npm/handlebars@latest/dist/handlebars.js"></script>
<script id="gallery-template" type="text/x-handlebars-template">
<section class="thumb__gallery">
{{#each printsName}}
<figure class = 'thumb__figure' oncontextmenu="return false;" onclick="openLightbox();currentSlide({{id}})">
<img class= "thumb__image" src="./img/Thumb/{{link}}" alt="{{name}}" >
<figcaption class='thumb__caption'>{{name}}.</figcaption>
</figure>
{{/each}}
</section>
<section class="lightbox" id="lightbox">
<div class="lightbox__close" onclick="closeLightbox()">×</div>
{{#each printsName}}
<figure class = 'lightbox__figure' oncontextmenu="return false;" >
<img class= "lightbox__image" src="./img/{{link}}" alt="{{name}}" >
<figcaption class='ligthbox__caption'>{{name}}.</figcaption>
<a class="arrow arrow--left" onclick="plusSlides(-1)">❮</a>
<a class="arrow arrow--right" onclick="plusSlides(1)">❯</a>
</figure>
{{/each}}
</section>
</script>
</head>
<body>
<nav>
<div class="logo">
<a href="./index.html"> <h4>Péter Tauber</h4></a>
</div>
<ul class="nav-links">
<li><a href="./about.html">About</a></li>
<li><a href="./prints.html" class="active">Prints</a></li>
<li><a href="./paintings.html">Paintings</a></li>
<li><a href="./sculptures.html">Sculptures</a></li>
<li><a href="http://rostbrand.com" target="_blank">Design</a></li>
<li><a href="./contact.html">Contact</a></li>
</ul>
<div class="burger">
<div class="line1"></div>
<div class="line2"></div>
<div class="line3"></div>
</div>
</nav>
<section class="prints" id="gallery">
</section>
<footer>
<div class="copyright">
<small>© Copyright 2020, Rostbrand</small>
</div>
<div class="social-media">
<a href="https://www.instagram.com/peter.tauber/" target="_blank"><img src="./img/insta.png" alt="instagram"></a>
<a href="https://www.facebook.com/peter.tauber.9" target="_blank"><img src="./img/facebook.png" alt="facebook"></a>
<a href="https://www.kunstabhinterhof.at/artist/peter-tauber/" target="_blank"><img src="./img/kah.png" alt="kunstabhinterhof"></a>
</div>
</footer>
<script defer src="./js/nav.js" ></script>
<script defer src="./js/handlebar.js" ></script>
<script defer src="./js/lightBox.js" ></script>
</body>
</html>