-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathgallery.html
More file actions
92 lines (89 loc) · 4.07 KB
/
Copy pathgallery.html
File metadata and controls
92 lines (89 loc) · 4.07 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
<title>RUN LEVEL ZERO — Gallery</title>
<style>html,body{background:#000;color:#f5f5f5}.page-transition{position:fixed;inset:0;background:#000;opacity:0;pointer-events:none;z-index:2147483647;transition:opacity .08s linear}html.is-navigating .page-transition{opacity:1}</style>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Oswald:wght@200..700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="/index_f6e4.6d5d31be.css">
</head>
<body>
<div class="layout">
<div class="description description-text">
<div class="quick-links">
<p class="quick-link"><a href="/index.html">Home</a></p>
<p class="quick-link"><a href="/livedates.html">Live Dates</a></p>
</div>
<h1 class="page-title">Gallery</h1>
<p class="intro-text">Archive galleries from the Run Level Zero years.</p>
<ul class="gallery-link-list">
<li>
<a href="/gallery/jan-erik-saarinen.html">
<img class="gallery-link-thumb" src="/gallery/jan-erik-saarinen/october-2005/rlzoktober2005a (1a).jpg" alt="Jan-Erik Saarinen promo gallery thumbnail">
<span>Promo Photos — Jan-Erik Saarinen (2003–2005)</span>
</a>
</li>
<li>
<a href="/gallery/us-tour-2006.html">
<img class="gallery-link-thumb" src="/gallery/us-tour-2006/img_us/msg_2006-01-27_22:40:47_pict.jpg" alt="US tour gallery thumbnail">
<span>US Tour 2006 — diary gallery</span>
</a>
</li>
<li>
<a href="/gallery/misc.html">
<img class="gallery-link-thumb" src="/gallery/misc/promo/rlz05bw31-concreteart.jpg" alt="Misc gallery thumbnail">
<span>Misc — promo, wallpaper and legacy previews</span>
</a>
</li>
<li>
<a href="/gallery/past-gigs.html">
<img class="gallery-link-thumb" src="/gallery/past-gigs/live2/RunLevelZero01HB071104.jpg" alt="Past gigs thumbnail">
<span>Past Gigs — consolidated live galleries</span>
</a>
</li>
<li>
<a href="/gallery/tour2004/">
<img class="gallery-link-thumb" src="/gallery/tour2004/bild017.jpg" alt="Tour 2004 thumbnail">
<span>Tour 2004 — European Tour MMS Blog</span>
</a>
</li>
<li>
<a href="/gallery/spain-2006.html">
<img class="gallery-link-thumb" src="/gallery/spain-2006/01042006.jpg" alt="Spain gig gallery thumbnail">
<span>Spain 2006 — Madrid, Body Machine Festival</span>
</a>
</li>
</ul>
</div>
</div>
<div class="page-transition" aria-hidden="true"></div>
<script>
document.addEventListener("click", function (event) {
if (event.defaultPrevented || event.button !== 0) return;
if (event.metaKey || event.ctrlKey || event.shiftKey || event.altKey) return;
var link = event.target.closest("a");
if (!link) return;
if (link.target && link.target !== "_self") return;
if (link.hasAttribute("download")) return;
var href = link.getAttribute("href");
if (!href || href.indexOf("#") === 0 || href.indexOf("mailto:") === 0 || href.indexOf("tel:") === 0) return;
var url = new URL(link.href, window.location.href);
if (url.origin !== window.location.origin) return;
event.preventDefault();
document.documentElement.classList.add("is-navigating");
window.setTimeout(function () {
window.location.href = url.href;
}, 24);
window.setTimeout(function () {
document.documentElement.classList.remove("is-navigating");
}, 1200);
}, true);
window.addEventListener("pageshow", function () {
document.documentElement.classList.remove("is-navigating");
});
</script>
</body>
</html>