-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfun-facts.html
More file actions
130 lines (116 loc) · 4.88 KB
/
Copy pathfun-facts.html
File metadata and controls
130 lines (116 loc) · 4.88 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
<!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>Fun Facts · 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">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" class="active">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="fun-facts">
<h2 class="section-title">Fun Facts</h2>
<p class="section-intro">A few numbers that tell the Doist story.</p>
<div class="facts-grid">
<div class="fact-card">
<span class="fact-number">2027</span>
<span class="fact-label">January will mark Todoist's 20th birthday</span>
</div>
<div class="fact-card">
<span class="fact-number">2007</span>
<span class="fact-label">Year Amir created Todoist while still at university</span>
</div>
<div class="fact-card">
<span class="fact-number">2012</span>
<span class="fact-label">Year Todoist launched its iOS and Android mobile apps</span>
</div>
<div class="fact-card">
<span class="fact-number">5.96</span>
<span class="fact-label">Average tenure at Doist as of June 2026 (years)</span>
</div>
<div class="fact-card">
<span class="fact-number">2015</span>
<span class="fact-label">Year of the first ever Doist Company Retreat, held in Spain</span>
</div>
<div class="fact-card">
<span class="fact-number">43</span>
<span class="fact-label">Nationalities represented at Doist as of June 2026</span>
</div>
<div class="fact-card">
<span class="fact-number">2011</span>
<span class="fact-label">Year Olivia in CX joined as the very first Doist hire</span>
</div>
<div class="fact-card">
<span class="fact-number">75%</span>
<span class="fact-label">Of Word Assassin winners have been first-time players</span>
</div>
<div class="fact-card">
<span class="fact-number">1</span>
<span class="fact-label">Smallest team: Operations (1 member)</span>
</div>
<div class="fact-card">
<span class="fact-number">18</span>
<span class="fact-label">Largest team: Customer Experience (18 members)</span>
</div>
</div>
</section>
<footer>
<p>Doist Retreat Guide · 2026 · Made with <span>♥</span> for Doist Connect, Denmark</p>
</footer>
</div>
</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>