-
Notifications
You must be signed in to change notification settings - Fork 205
/
search.html
181 lines (172 loc) · 7.92 KB
/
search.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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta xmlns="http://www.w3.org/1999/xhtml" http-equiv="x-ua-compatible" content="IE=edge" />
<title>Search</title>
<link href="css/roboto.font.css" rel="stylesheet" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/themes/algolia-min.css" integrity="sha256-HB49n/BZjuqiCtQQf49OdZn63XuKFaxcIHWf0HNKte8=" crossorigin="anonymous" />
<link href="css/theme2.css" rel="stylesheet" />
<link href="css/content-theme2.css" rel="stylesheet" />
<link href="css/html5.algoliasearch.css" rel="stylesheet" />
<link href="css/layout-custom-style.css?version=20241217" rel="stylesheet" />
<style xmlns="http://www.w3.org/1999/xhtml" type="text/css">
/*<![CDATA[*/
div.skipnav {
}
div.skipnav a {
position: fixed;
left: -10000px;
top: 1.5em;
width: 1px;
height: 1px;
overflow: hidden;
}
div.skipnav a:focus, div.skipnav a:active, div.skipnav a:hover {
background: white;
color: black;
box-shadow: 5px 5px 5px 0px rgba(0,0,0,0.5);
position: fixed;
left: 2em;
top: 1.5em;
width: auto;
height: auto;
overflow: visible;
text-decoration: underline;
z-index: 99999; /* has to be higher than the side panel */
}
/*]]>*/
</style>
</head>
<body class="theme2 search-page">
<div xmlns="http://www.w3.org/1999/xhtml" class="skipnav">
<a href="#content-wrapper">Skip to main content</a>
</div>
<header xmlns="http://www.w3.org/1999/xhtml" class="portal-header" data-portal-language="en">
<div xmlns="" class="inner">
<a class="logo-link" href="https://devcenter.bitrise.io" target="_blank" rel="noopener"><img class="logo" src="css/image/portal-logo.svg" alt="Logo" /></a>
<div class="portal-search form-inline">
<div id="searchbox" class="ais-SearchBox"></div>
</div>
</div>
</header>
<div class="portal-body">
<div class="portal-body-container">
<div class="portal-body-row">
<div class="ais-InstantSearch">
<div class="filters-panel">
<h3 class="filters-title">Filters</h3>
<div id="clear-refinements"></div>
<h4 class="refinement-title">platform</h4>
<div id="platform-refinement">
</div>
<h4 class="refinement-title">configuration</h4>
<div id="configuration-refinement">
</div>
<h4 class="refinement-title">actions</h4>
<div id="actions-refinement">
</div>
<div id="hierarchical-categories"></div>
</div>
<div class="search-results-panel">
<h3 class="search-results-title">Search results</h3>
<div id="hits">
</div>
<div id="pagination">
</div>
</div>
</div>
</div>
</div>
</div>
<footer xmlns="http://www.w3.org/1999/xhtml" class="portal-footer">
<div class="inner row"></div>
</footer>
<script src="https://cdn.jsdelivr.net/npm/es6-promise@4/dist/es6-promise.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/es6-promise@4/dist/es6-promise.auto.min.js"></script>
<script src="js/jquery-3/jquery-3.6.0.min.js"></script>
<script src="js/jquery-migrate-3.4.1.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js" integrity="sha384-aJ21OjlMXNL5UyIl/XNwTMqvzeRMZH2w8c5cRVpzpU8Y5bApTppSuUkhZXN0VxHd" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/algoliasearchLite.min.js" integrity="sha256-5rOQwvvJdM9oDYQYCGzaJuuTy6SUALjma3OtzEGyJM0=" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/instantsearch.production.min.js" integrity="sha256-6S7q0JJs/Kx4kb/fv0oMjS855QTz5Rc2hh9AkIUjUsk=" crossorigin="anonymous"></script>
<script type="text/javascript">
//<![CDATA[
var portalLanguage = 'en';
var lang = getQueryVariable("lang");
if (lang) {
portalLanguage = lang;
}
function getQueryVariable(variable) {
var query = window.location.search.substring(1);
var vars = query.split("&");
for (var i = 0; i < vars.length; i++) {
var pair = vars[i].split("=");
if (pair[0] == variable) {
return pair[1];
}
}
return (false);
}
//]]>
</script>
<script type="text/javascript">
//<![CDATA[
var searchimmediate = true;
var use_breadcrumbs_for_algolia_searchresults = '0';
var search = instantsearch({
indexName : portalLanguage + '-UUID-7395f1f7-ccf0-589c-1269-55efc35b445b',
searchClient : algoliasearch('HI1538U2K4', 'eda8ab602a414630fc98dfac94d555bf'),
});
search.addWidget(
instantsearch.widgets.refinementList({
container: '#platform-refinement',
attribute: 'platform',
sortBy: ['isRefined', 'count:desc', 'name:asc'],
limit: 100,
operator: 'or',
templates: {
header: 'Platform ',
}
})
);
search.addWidget(
instantsearch.widgets.refinementList({
container: '#configuration-refinement',
attribute: 'configuration',
sortBy: ['isRefined', 'count:desc', 'name:asc'],
limit: 100,
operator: 'or',
templates: {
header: 'Configuration ',
}
})
);
search.addWidget(
instantsearch.widgets.refinementList({
container: '#actions-refinement',
attribute: 'actions',
sortBy: ['isRefined', 'count:desc', 'name:asc'],
limit: 100,
operator: 'or',
templates: {
header: 'Actions',
}
})
);
//]]>
</script>
<script src="js/html5.algoliasearchpage.js"></script>
<script type="text/javascript">
//<![CDATA[
search.start();
//]]>
</script>
<script xmlns="http://www.w3.org/1999/xhtml" src="js/layout-custom-script.js?version=20241217" type="text/javascript"></script>
</body>
</html>