-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathsearch.html
More file actions
430 lines (370 loc) · 25 KB
/
search.html
File metadata and controls
430 lines (370 loc) · 25 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
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
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
<!DOCTYPE html>
<!--[if IE 7]> <html lang="en" class="lt-ie9 lt-ie8 no-js"> <![endif]-->
<!--[if IE 8]> <html lang="en" class="lt-ie9 no-js"> <![endif]-->
<!--[if gt IE 8]><!--> <html lang="en" class="no-js"> <!--<![endif]-->
<head>
<meta charset=utf-8 />
<meta name="author" content="UCL" />
<meta name="description" content="UCL Homepage" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- social meta -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:site" content="@uclnews">
<meta name="twitter:title" content="UCL - London's Global University">
<meta name="twitter:description" content="UCL (University College London) is London's leading multidisciplinary university, with 8,000 staff and 25,000 students.">
<meta name="twitter:creator" content="@UCLWAMS">
<meta name="twitter:image:src" content="http://www.ucl.ac.uk/visual-identity/logos/standalone.png">
<meta property="og:image" content="http://www.ucl.ac.uk/visual-identity/logos/standalone.png" />
<meta property="og:title" content="UCL - London's Global University" />
<meta property="og:url" content="http://www.ucl.ac.uk" />
<meta property="og:site_name" content="UCL" />
<meta property="og:description" content="UCL (University College London) is London's leading multidisciplinary university, with 8,000 staff and 25,000 students." />
<meta property="og:type" content="website" />
<meta property="og:profile_id" content="uclofficial" />
<!-- end social meta -->
<title>UCL Design Language</title>
<link href="//static.ucl.ac.uk/indigo/css/screen.min.css" media="screen, projection" rel="stylesheet" type="text/css" />
<!--[if IE]><link href="//static.ucl.ac.uk/indigo/css/ie.min.css" rel="stylesheet" /><![endif]-->
<!--[if lt IE 8]><link href="//static.ucl.ac.uk/indigo/css/ie-old.min.css" rel="stylesheet" /><![endif]-->
<link rel="shortcut icon" href="//static.ucl.ac.uk/indigo/images/favicon.ico" />
<link rel="apple-touch-icon-precomposed" href="favicon-152.png">
<meta name="msapplication-TileColor" content="#000000">
<meta name="msapplication-TileImage" content="favicon-144.png">
<script src="//static.ucl.ac.uk/indigo/js/lib/modernizr-custom.js"></script>
<script>
var cuttingTheMustard = document.querySelector && window.localStorage && window.addEventListener;
Modernizr.load({
//cutting the mustard as used by the BBC
test: cuttingTheMustard
//if old browser load the shiv
,
nope: [
'//static.ucl.ac.uk/indigo/js/lib/html5shiv-printshiv.min.js', '//static.ucl.ac.uk/indigo/js/lib/respond.min.js'
]
});
//set conditional assets for main.js
var globalSiteSpecificVars = {
pathToJquery: '//static.ucl.ac.uk/indigo/js/lib/jquery-1.9.1.min',
googleAnalyticsIdsArray: [] //specify array of site specific id's NOT UCL generic UA-943297-1
}
if (cuttingTheMustard) {
globalSiteSpecificVars.pathToJquery = "//static.ucl.ac.uk/indigo/js/lib/jquery-2.1.1.min";
}
</script>
<script src="//static.ucl.ac.uk/indigo/js/lib/require.min.js"></script>
<script src="//static.ucl.ac.uk/indigo/js/main.js"></script>
<script>
require(["app/general"]); //load the default stuff
</script>
</head>
<body id="index" class="layout-vertical layout-vertical--nav-1col">
<header class="header header--desktop">
<a class="header__close" href="#">
<img src="//cdn.ucl.ac.uk/indigo/images/close.png" alt="X" />Close</a>
<div class="masthead">
<div class="wrapper clearfix">
<div class="masthead__search">
<form action="#" method="get">
<!--
<div class="search-type">
<input type="radio" id="ucl-site" name="operation" value="1" checked="checked">
<label for="ucl-site" class="site">Site</label>
<input type="radio" id="ucl-search" name="operation" value="2">
<label for="ucl-search" class="staff">Directory</label>
</div>
-->
<div class="search-form">
<input type="search" placeholder="Search UCL websites, people and more" class="search-form__input search-form__input--search" value="">
</div>
<input type="submit" name="sumbit" value="Go" class="btn search-form__input search-form__input--submit" />
</form>
</div>
<nav class="masthead__nav m-clear">
<ul class="masthead__list">
<li class="masthead__item"><a href="//www.ucl.ac.uk/" class="masthead__link">UCL Home</a>
</li>
<li class="masthead__item"><a href="//www.ucl.ac.uk/prospective-students/" class="masthead__link">Prospective students</a>
</li>
<li class="masthead__item"><a href="//www.ucl.ac.uk/students/" class="masthead__link">Current students</a>
</li>
<li class="masthead__item"><a href="//www.ucl.ac.uk/staff/" class="masthead__link">Staff</a>
</li>
</ul>
</nav>
</div>
</div>
<!-- end .masthead -->
<div class="wrapper">
<div class="photograph">
<div class="brand">
<p class="brand__heading">UCL Design Language</p>
<a href="/" class="brand__link"><span class="visually-hidden">Home</span></a>
<img src="//cdn.ucl.ac.uk/indigo/images/ucl-logo.svg" alt="UCL logo" id="logo" class="brand__logo">
</div>
<p class="photograph__description">A nascent retina, generated from a 3D embryonic stem cell culture</p>
</div>
<!-- end .photograph -->
<div class="sidebar">
<h2 class="as-h5">Refine your results</h2>
<ul class="list-unstyled">
<li>
<input type="checkbox" id="checkbox_id1" />
<label for="checkbox_id1">An option</label>
<span>(45)</span>
</li>
<li>
<input type="checkbox" id="checkbox_id2" />
<label for="checkbox_id2">Another option</label>
<span>(45)</span>
</li>
<li>
<input type="checkbox" id="checkbox_id3" />
<label for="checkbox_id3">One more option</label>
<span>(45)</span>
</li>
<li>
<input type="checkbox" id="checkbox_id4" />
<label for="checkbox_id4">The final option</label>
<span>(45)</span>
</li>
</ul>
<ul class="list-unstyled">
<li class="">
<a href="">Web<span>(5000)</span></a>
</li>
<li class="">
<a href="">People<span>(300)</span></a>
</li>
<li class="">
<a href="">Research<span>(1224)</span></a>
</li>
<li class="">
<a href="">Courses<span>(44)</span></a>
</li>
<li class="">
<a href="">Other<span>(4)</span></a>
</li>
</ul>
</div>
<!-- end .sidebar -->
</div>
<!-- end .wrapper -->
</header>
<!-- end .header -->
<div class="site-content wrapper">
<header class="header header--mobile default-header">
<a class="header__open" href="#">
<img src="//static.ucl.ac.uk/indigo/images/ucl-menu.svg" alt="Menu" />
</a>
</header>
<div class="site-content__inner clearfix">
<div class="site-content__body">
<!-- start main slot where silva content gets rendered-->
<div class="site-content__main">
<div id="fb-queryform">
<form action="" method="GET" class="form">
<div class="input-group">
<div class="input-group__item">
<input aria-haspopup="true" aria-autocomplete="list" role="textbox" autocomplete="off" name="query" id="query" accesskey="q" type="text" class="form__control input-group__input ui-autocomplete-input" placeholder="Search">
</div>
<div class="input-group__item">
<input class="btn input-group__input input-group__input--btn" type="submit">
</div>
</div>
</form>
</div>
<div class="search-results">
<p id="fb-matching" class="fb-with-faceting">
<span class="fb-result-count" id="fb-page-start">1</span>-
<span class="fb-result-count" id="fb-page-end">10</span> of
<span class="fb-result-count" id="fb-total-matching">6,958</span>
results found for
<strong class="results-query">president</strong>.
<!--<span class="did-you-mean">El Presidenté</span>-->
<span class="did-you-mean">Did you mean:
<a href="search.html?query=engineers&collection=ucl-public-meta"><span class="funnelback-highlight">engineers</span>
</a>?
</span>
</p>
<!-- #fb-matching -->
<!-- FEATURED PAGES (BEST BETS) -->
<div class="box">
<h4>
<a href="/search/click.cgi?&collection=ucl-public-meta&url=http%3A%2F%2Fwww.ucl.ac.uk%2Fprovost%2F&auth=p83eE%2Fy2ou40PpXCCXCp2A&type=FP&profile=_default">
<strong>President</strong> and Provost</a>
</h4>
<p>UCL President &Provost. UCL President & Provost Professor Michael Arthur is internationally renowned for his contribution to education and to medical research.</p>
<p>
<cite><a href="/search/click.cgi?&collection=ucl-public-meta&url=http%3A%2F%2Fwww.ucl.ac.uk%2Fprovost%2F&auth=p83eE%2Fy2ou40PpXCCXCp2A&type=FP&profile=_default" title="President and Provost">http://www.ucl.ac.uk/provost/</a>
</cite>
</p>
</div>
<!-- RESULTS -->
<ol id="fb-results">
<!-- EACH RESULT -->
<li>
<h4>
<a href="/search/click.cgi?rank=1&collection=ucl-public-meta&url=http%3A%2F%2Fwww.ucl.ac.uk%2Fprovost&index_url=http%3A%2F%2Fwww.ucl.ac.uk%2Fprovost&auth=Qw26%2Fgkud7m%2Bq1nZjbk6Jg&query=president&profile=_default" title="http://www.ucl.ac.uk/provost"> UCL <strong>President</strong> & Provost
</a>
</h4>
<!-- QUERY BIASED SUMMARY (WITH DATE)-->
<p class="fb-summary">
UCL President &Provost. UCL President & Provost Professor Michael Arthur is internationally renowned for his contribution to education and to medical research. ... Read more news from UCL s President &Provost..
</p>
<!-- URL AND FILESIZE -->
<p>
<cite><a href="/search/click.cgi?rank=1&collection=ucl-public-meta&url=http%3A%2F%2Fwww.ucl.ac.uk%2Fprovost&index_url=http%3A%2F%2Fwww.ucl.ac.uk%2Fprovost&auth=Qw26%2Fgkud7m%2Bq1nZjbk6Jg&query=president&profile=_default" title="UCL President & Provost">www.ucl.ac.uk/provost</a>
</cite>
</p>
</li>
<li>
<h4>
<a href="/search/click.cgi?rank=4&collection=ucl-public-meta&url=http%3A%2F%2Fwww.ucl.ac.uk%2Flaws%2Fnews%2Findex.shtml&index_url=http%3A%2F%2Fwww.ucl.ac.uk%2Flaws%2Fnews%2Findex.shtml&auth=Qf%2BryKheVhDWEpb9HT8nxQ&query=president&profile=_default" title="http://www.ucl.ac.uk/laws/news/index.shtml"> UCL Laws: News
</a>
</h4>
<!-- QUERY BIASED SUMMARY (WITH DATE)-->
<p class="fb-summary">
The President of Cyprus delivers lecture at UCL Laws. The President of Cyprus, Nicos Anastasiades, delivered a lecture, The Evolution of Shipping Law, on Thursday 16 January. ... While visiting London on business, the Cypriot President made time to visit
</p>
<!-- URL AND FILESIZE -->
<p>
<cite><a href="/search/click.cgi?rank=4&collection=ucl-public-meta&url=http%3A%2F%2Fwww.ucl.ac.uk%2Flaws%2Fnews%2Findex.shtml&index_url=http%3A%2F%2Fwww.ucl.ac.uk%2Flaws%2Fnews%2Findex.shtml&auth=Qf%2BryKheVhDWEpb9HT8nxQ&query=president&profile=_default" title="UCL Laws: News">www.ucl.ac.uk/laws/news/index.shtml</a>
</cite>
</p>
</li>
<li>
<h4>
<a href="/search/click.cgi?rank=5&collection=ucl-public-meta&url=http%3A%2F%2Fwww.ucl.ac.uk%2Fgee%2Fgee-news-publication%2F20101401&index_url=http%3A%2F%2Fwww.ucl.ac.uk%2Fgee%2Fgee-news-publication%2F20101401&auth=Oi54ufInPNV4LaJ6peYfzg&query=president&profile=_default" title="http://www.ucl.ac.uk/gee/gee-news-publication/20101401"> Prof Steve Jones elected <strong>President</strong> of the Association of Science…
</a>
</h4>
<!-- QUERY BIASED SUMMARY (WITH DATE)-->
<p class="fb-summary">
GEE News Publication. Prof Steve Jones elected President of the Association of Science Education. ... But mathematical models predict that sexual selection is just as likely to make an ornament [.]. Prof Steve Jones elected President of the Association
</p>
<!-- URL AND FILESIZE -->
<p>
<cite><a href="/search/click.cgi?rank=5&collection=ucl-public-meta&url=http%3A%2F%2Fwww.ucl.ac.uk%2Fgee%2Fgee-news-publication%2F20101401&index_url=http%3A%2F%2Fwww.ucl.ac.uk%2Fgee%2Fgee-news-publication%2F20101401&auth=Oi54ufInPNV4LaJ6peYfzg&query=president&profile=_default" title="Prof Steve Jones elected President of the Association of Science Education">www.ucl.ac.uk/gee/gee-news-publication/20101401</a>
</cite>
</p>
</li>
<li>
<h4>
<a href="/search/click.cgi?rank=6&collection=ucl-public-meta&url=http%3A%2F%2Fwww.ucl.ac.uk%2Fprovost%2Fnews&index_url=http%3A%2F%2Fwww.ucl.ac.uk%2Fprovost%2Fnews&auth=6EucS%2BrS2J6OFdMCd6XmGQ&query=president&profile=_default" title="http://www.ucl.ac.uk/provost/news"> News
</a>
</h4>
<!-- QUERY BIASED SUMMARY (WITH DATE)-->
<p class="fb-summary">
UCL President &Provost. ... UCL President &Provost. News.
</p>
<!-- URL AND FILESIZE -->
<p>
<cite><a href="/search/click.cgi?rank=6&collection=ucl-public-meta&url=http%3A%2F%2Fwww.ucl.ac.uk%2Fprovost%2Fnews&index_url=http%3A%2F%2Fwww.ucl.ac.uk%2Fprovost%2Fnews&auth=6EucS%2BrS2J6OFdMCd6XmGQ&query=president&profile=_default" title="News">www.ucl.ac.uk/provost/news</a>
</cite>
</p>
</li>
<li>
<h4>
<a href="/search/click.cgi?rank=7&collection=ucl-public-meta&url=http%3A%2F%2Fwww.ucl.ac.uk%2Fgee%2Fgee-news-publication%2F20101401-2&index_url=http%3A%2F%2Fwww.ucl.ac.uk%2Fgee%2Fgee-news-publication%2F20101401-2&auth=AIMbd6aIliyP0azyGY8GWA&query=president&profile=_default" title="http://www.ucl.ac.uk/gee/gee-news-publication/20101401-2"> Prof Steve Jones elected <strong>President</strong> of the Association of Science…
</a>
</h4>
<!-- QUERY BIASED SUMMARY (WITH DATE)-->
<p class="fb-summary">
GEE News Publication. Prof Steve Jones elected President of the Association of Science Education. ... But mathematical models predict that sexual selection is just as likely to make an ornament [.]. Prof Steve Jones elected President of the Association
</p>
<!-- URL AND FILESIZE -->
<p>
<cite><a href="/search/click.cgi?rank=7&collection=ucl-public-meta&url=http%3A%2F%2Fwww.ucl.ac.uk%2Fgee%2Fgee-news-publication%2F20101401-2&index_url=http%3A%2F%2Fwww.ucl.ac.uk%2Fgee%2Fgee-news-publication%2F20101401-2&auth=AIMbd6aIliyP0azyGY8GWA&query=president&profile=_default" title="Prof Steve Jones elected President of the Association of Science Education">www.ucl.ac.uk/gee/gee-news-publication/20101401-2</a>
</cite>
</p>
</li>
<li>
<h4>
<a href="/search/click.cgi?rank=8&collection=ucl-public-meta&url=http%3A%2F%2Fwww.ucl.ac.uk%2Fstaff%2F&index_url=http%3A%2F%2Fwww.ucl.ac.uk%2Fstaff%2F&auth=ZFzkP9ALYLhfjG5PQ%2FO4ZA&query=president&profile=_default" title="http://www.ucl.ac.uk/staff/"> UCL staff gateway
</a>
</h4>
<!-- QUERY BIASED SUMMARY (WITH DATE)-->
<p class="fb-summary">
Directories, teaching and research support, IT, Finance, HR and policies for UCL staff.
</p>
<!-- URL AND FILESIZE -->
<p>
<cite><a href="/search/click.cgi?rank=8&collection=ucl-public-meta&url=http%3A%2F%2Fwww.ucl.ac.uk%2Fstaff%2F&index_url=http%3A%2F%2Fwww.ucl.ac.uk%2Fstaff%2F&auth=ZFzkP9ALYLhfjG5PQ%2FO4ZA&query=president&profile=_default" title="UCL staff gateway">www.ucl.ac.uk/staff/</a>
</cite>
</p>
</li>
</ol>
<!-- SEARCH: NAVIGATION -->
<ol class="pagination">
<li class="pagination__item pagination__item--current"><span class="fb-current-result-page">1</span></li>
<li class="pagination__item pagination__item--active"><a href="search.html?query=president&collection=ucl-public-meta&sumbit=Go&start_rank=11">2</a></li>
<li class="pagination__item pagination__item--active"><a href="search.html?query=president&collection=ucl-public-meta&sumbit=Go&start_rank=21">3</a></li>
<li class="pagination__item pagination__item--active"><a href="search.html?query=president&collection=ucl-public-meta&sumbit=Go&start_rank=31">4</a></li>
<li class="pagination__item pagination__item--active"><a href="search.html?query=president&collection=ucl-public-meta&sumbit=Go&start_rank=41">5</a></li>
<li class="pagination__item pagination__item--active"><a href="search.html?query=president&collection=ucl-public-meta&sumbit=Go&start_rank=51">6</a></li>
<li class="pagination__item pagination__item--active"><a href="search.html?query=president&collection=ucl-public-meta&sumbit=Go&start_rank=61">7</a></li>
<li class="pagination__item pagination__item--active"><a href="search.html?query=president&collection=ucl-public-meta&sumbit=Go&start_rank=71">8</a></li>
<li class="pagination__item pagination__item--active"><a href="search.html?query=president&collection=ucl-public-meta&sumbit=Go&start_rank=81">9</a></li>
<li class="pagination__item pagination__item--active"><a href="search.html?query=president&collection=ucl-public-meta&sumbit=Go&start_rank=91">10</a></li>
<li class="pagination__next"><a href="search.html?query=president&collection=ucl-public-meta&sumbit=Go&start_rank=11" rel="next" class="fb-next-result-page fb-page-nav">Next 10</a></li>
</ol>
</div>
</div>
<!-- end main slot where silva content gets rendered-->
</div>
</div>
</div>
<!-- end .site-content -->
<footer class="footer wrapper">
<div class="footer__inner clearfix">
<article class="block block--col-1">
<h2 class="as-h5">Facilities</h2>
<ul class="footer__list list-unstyled">
<li class="footer__item"><a href="http://www.ucl.ac.uk/departments/faculties">Faculties and departments</a></li>
<li class="footer__item"><a href="http://www.ucl.ac.uk/library/">Library</a></li>
<li class="footer__item"><a href="http://www.ucl.ac.uk/museums">Museums and Collections</a></li>
<li class="footer__item"><a href="http://www.thebloomsbury.com/">UCL Bloomsbury Theatre</a></li>
<li class="footer__item"><a href="http://www.ucl.ac.uk/maps">Maps and buildings</a></li>
</ul>
</article>
<article class="block block--col-2">
<h2 class="as-h5">Locations</h2>
<ul class="footer__list list-unstyled">
<li class="footer__item"><a href="http://www.ucl.ac.uk/london">UCL and London</a></li>
<li class="footer__item"><a href="http://www.ucl.ac.uk/australia">UCL Australia</a></li>
<li class="footer__item"><a href="http://www.ucl.ac.uk/qatar">UCL Qatar</a></li>
<li class="footer__item"><a href="http://www.ucl.ac.uk/global">UCL Global</a></li>
</ul>
</article>
<article class="block block--col-3">
<h2 class="as-h5">Connect with us</h2>
<ul class="footer__list list-unstyled">
<li class="footer__item"><a href="http://www.ucl.ac.uk/alumni">Alumni</a></li>
<li class="footer__item"><a href="http://www.ucl.ac.uk/enterprise">Businesses</a></li>
<li class="footer__item"><a href="http://www.ucl.ac.uk/media">Media Relations</a></li>
<li class="footer__item"><a href="http://www.ucl.ac.uk/hr/jobs/">Jobs</a></li>
<li class="footer__item"><a href="http://www.ucl.ac.uk/makeyourmark">Give to UCL</a></li>
</ul>
</article>
<hr class="clear">
<ul class="footer__list list-unstyled zero-bottom">
<li class="footer__item text-muted small">University College London, Gower Street, London, WC1E 6BT Tel: +44 (0) 20 7679 2000</li>
</ul>
<ul class="list-inline footer__list list-unstyled list-inline--divided">
<li class="text-muted small">Copyright © 2015 UCL</li>
<li class="text-muted small"><a href="#">Disclaimer</a>
</li>
<li class="text-muted small"><a href="#">Freedom of Information</a>
</li>
<li class="text-muted small"><a href="#">Accessibility</a>
</li>
<li class="text-muted small"><a href="#">Privacy</a>
</li>
<li class="text-muted small"><a href="#">Cookies</a>
</li>
<li class="text-muted small"><a href="#">Contact Us</a>
</li>
</ul>
</div>
</footer>
</body>
</html>