-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwelcome-bag.html
More file actions
94 lines (92 loc) · 4.11 KB
/
Copy pathwelcome-bag.html
File metadata and controls
94 lines (92 loc) · 4.11 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
<!DOCTYPE html>
<html lang="en">
<head>
<script>
window.__rtguideAuthOK = (sessionStorage.getItem('rtguide_authenticated') === 'true');
if (!window.__rtguideAuthOK) {
var __rtguidePw = prompt('Enter password to access this site:');
if (__rtguidePw === 'ball-viking-purple') {
sessionStorage.setItem('rtguide_authenticated', 'true');
window.__rtguideAuthOK = true;
}
}
</script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<title>Welcome Bag · Retreat Guide 2026</title>
<link href="https://fonts.googleapis.com/css2?family=Libre+Baskerville:wght@400;700&family=DM+Sans:wght@300;400;500&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<noscript><div style="display:flex; align-items:center; justify-content:center; height:100vh; font-family:sans-serif; font-size:18px; text-align:center; padding:2rem; color:#1A1A1A;">This site requires JavaScript to view. Please enable it to continue.</div></noscript>
<div id="site-mount"></div>
<template id="site-template">
<div id="site">
<nav><div class="nav-inner">
<a class="nav-logo" href="index.html">Retreat Guide 2026</a>
<ul class="nav-links">
<li><a href="index.html">Home</a></li>
<li><a href="welcome.html">Introduction</a></li>
<li><a href="location.html">Location</a></li>
<li><a href="welcome-bag.html" class="active">Welcome Bag</a></li>
<li><a href="docs.html">Important Info</a></li>
<li><a href="teams.html">Team Directory</a></li>
<li><a href="fun-facts.html">Fun Facts</a></li>
</ul>
<div class="hamburger" onclick="toggleMenu()" aria-label="Menu"><span></span><span></span><span></span></div>
</div></nav>
<div id="mobile-nav">
<a href="index.html" onclick="toggleMenu()">Home</a>
<a href="welcome.html" onclick="toggleMenu()">Introduction</a>
<a href="location.html" onclick="toggleMenu()">Location</a>
<a href="welcome-bag.html" onclick="toggleMenu()">Welcome Bag</a>
<a href="docs.html" onclick="toggleMenu()">Important Info</a>
<a href="teams.html" onclick="toggleMenu()">Team Directory</a>
<a href="fun-facts.html" onclick="toggleMenu()">Fun Facts</a>
</div>
<div class="page-content">
<section id="welcome-bag">
<h2 class="section-title">Welcome Bag</h2>
<p class="section-intro">Everything you'll find waiting for you when you arrive. A small token of appreciation for making the journey.</p>
<div class="bag-grid">
<div class="bag-item">
<div class="bag-item-icon">🧱</div>
<div class="bag-item-text">Personalised Lego Figurine Keyring<span>A little you, made of bricks</span></div>
</div>
<div class="bag-item">
<div class="bag-item-icon">🌱</div>
<div class="bag-item-text">A Donation in Your Name<span>Made alongside your teammates, for a cause we all care about</span></div>
</div>
<div class="bag-item">
<div class="bag-item-icon">🧖</div>
<div class="bag-item-text">Spa Gifts from the Venue<span>A little something to help you unwind</span></div>
</div>
<div class="bag-item">
<div class="bag-item-icon">🏷️</div>
<div class="bag-item-text">Comms Sticker<span>For your laptop, water bottle, or wherever stickers belong</span></div>
</div>
<div class="bag-item">
<div class="bag-item-icon">🎽</div>
<div class="bag-item-text">Your Swag of Choice<span>The one you picked - we hope you love it</span></div>
</div>
</div>
</section>
</div>
</div>
</template>
<script>
(function() {
if (window.__rtguideAuthOK) {
var tpl = document.getElementById('site-template');
var mount = document.getElementById('site-mount');
if (tpl && mount) {
mount.appendChild(tpl.content.cloneNode(true));
}
} else {
document.body.innerHTML = '<div style="display:flex; align-items:center; justify-content:center; height:100vh; font-family:sans-serif; font-size:18px; margin:0; color:#1A1A1A;">Wrong password</div>';
}
})();
function toggleMenu(){var m=document.getElementById('mobile-nav'); if(m) m.classList.toggle('open');}
</script>
</body>
</html>