-
Notifications
You must be signed in to change notification settings - Fork 4
/
404.html
139 lines (89 loc) · 3.96 KB
/
404.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
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
131
132
133
134
135
136
137
138
139
<!doctype html>
<html class="no-js" lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title> Roaring Bitmaps </title>
<link rel="stylesheet" href="https://roaringbitmap.org/css/foundation.css" type="text/css" media="screen">
<link rel="stylesheet" href="https://roaringbitmap.org/css/styles.css" type="text/css" media="screen">
</head>
<body>
<div class="off-canvas-wrapper"> <!-- Definition of global off canvas wrapper -->
<div class="off-canvas-wrapper-inner" data-off-canvas-wrapper> <!-- Definition of inner off canvas wrapper -->
<!-- Menu -->
<div class="off-canvas position-left" id="mobile-menu" data-off-canvas>
<ul>
<li><a href="#">One</a></li>
<li><a href="#">Two</a></li>
<li><a href="#">Three</a></li>
</ul>
</div>
<!-- Page Content -->
<div class="off-canvas-content" data-off-canvas-content>
<!-- Foundation Mobile Menu -->
<div class="titlebar show-for-small-only">
<div class="title-bar left">
<button class="menu-icon" type="button" data-open="mobile-menu"></button>
<span class="title-bar-title">MENU</span>
</div>
</div>
<!-- Partials that make up the site -->
<!-- BEGIN NAV BAR DESKTOP -->
<nav class="top-bar nav-desktop " style="background-repeat: no-repeat; background-position: 1% 1%; background-size: contain; background-image: url(/roaring.jpg);">
<div class="wrapper">
<div class="top-bar-left" >
<a href="https://roaringbitmap.org/"><h3 class="site-logo">Roaring Bitmaps</h3></a>
</div>
<div class="top-bar-right">
<ul class="menu horizontal menu-desktop">
<li><a class="nav-item" href="/about">About</a></li>
<li><a class="nav-item" href="/publications">Publications</a></li>
<li><a class="nav-item" href="/software">Software</a></li>
<li><a class="nav-item" href="/talks">Talks</a></li>
</ul>
</div>
</div>
</nav> <!-- END NAV BAR DESKTOP -->
<!-- BEGIN HERO PANEL -->
<section class="hero-panel">
<div class="wrapper">
<h1>A better compressed bitset</h1>
<p>Roaring bitmaps are compressed bitmaps. They can be hundreds of times faster.</p>
<a href="https://arxiv.org/pdf/1603.06549.pdf" class="button primary">Grab one of our research papers</a>
<a href="https://github.com/RoaringBitmap/" class="button success">Roaring Bitmaps on GitHub</a>
</div>
</section> <!-- END HERO PANEL -->
<h1>404 - The page you are looking for was not found </h1>
<!-- BEGIN FOOTER -->
<footer>
<div class="wrapper row small-up-1 medium-up-3">
<div class="column">
<a href="mailto:[email protected]">Get in touch</a>
</div>
<div class="column">
<h4>Links</h4>
<hr>
<a class="nav-item" href="/about">About</a>
<a class="nav-item" href="/publications">Publications</a>
<a class="nav-item" href="/software">Software</a>
<a class="nav-item" href="/talks">Talks</a>
</div>
<div class="column">
<h4>Social</h4>
<hr>
<a class="nav-item" href="http://github.com/RoaringBitmap">Github</a>
<a class="nav-item" href="https://groups.google.com/forum/#!forum/roaring-bitmaps">Google Groups</a>
</div>
</div>
</footer> <!-- END FOOTER -->
</div> <!-- End page content menu wrapper -->
</div> <!-- End of global off canvas inner wrapper -->
</div> <!-- End of global off canvas wrapper -->
<!-- JS includes -->
<script src="https://roaringbitmap.org/js/jquery.js"></script>
<script src="https://roaringbitmap.org/js/what-input.js"></script>
<script src="https://roaringbitmap.org/js/foundation.js"></script>
<script src="https://roaringbitmap.org/js/app.js"></script>
</body>
</html>