-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1273 lines (1198 loc) · 49.9 KB
/
index.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
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
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Kitchen sink
< PDX Finder</title>
<meta name="description" content="PDX Finder" />
<!-- Describe what this page is about -->
<meta name="keywords" content="Framework, Life Sciences" />
<!-- A few keywords that relate to the content of THIS PAGE (not the whole project) -->
<meta name="author" content="PDX Finder" />
<meta name="HandheldFriendly" content="true" />
<meta name="MobileOptimized" content="width" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<link rel="apple-touch-icon" sizes="180x180" href="https://ebiwd.github.io/pdx-visual-framework/images/favicons/apple-touch-icon.png?v=1">
<link rel="icon" type="image/png" sizes="32x32" href="https://ebiwd.github.io/pdx-visual-framework/images/favicons/favicon-32x32.png?v=1">
<link rel="icon" type="image/png" sizes="16x16" href="https://ebiwd.github.io/pdx-visual-framework/images/favicons/favicon-16x16.png?v=1">
<link rel="manifest" href="https://ebiwd.github.io/pdx-visual-framework/images/favicons/manifest.json?v=1">
<link rel="mask-icon" href="https://ebiwd.github.io/pdx-visual-framework/images/favicons/safari-pinned-tab.svg?v=1" color="#0032a0">
<link rel="shortcut icon" href="https://ebiwd.github.io/pdx-visual-framework/images/favicons/favicon.ico?v=1">
<meta name="apple-mobile-web-app-title" content="PDX Finder">
<meta name="application-name" content="PDX Finder">
<meta name="msapplication-config" content="https://ebiwd.github.io/pdx-visual-framework/images/favicons/browserconfig.xml?v=1">
<meta name="theme-color" content="#0032a0">
<!-- Add information on the life cycle of this page -->
<meta name="ebi:owner" content="PDX" />
<!-- Who should be contacted about changes -->
<meta name="ebi:review-cycle" content="60" />
<!-- In days, how often should the content be reviewed -->
<meta name="ebi:last-review" content="2017-11-14" />
<!-- The last time the content was reviewed -->
<meta name="ebi:expiry" content="2018-01-20" />
<!-- When this content is no longer relevant -->
<!-- If you link to any other sites frequently, consider optimising performance with a DNS prefetch -->
<!-- <link rel="dns-prefetch" href="//www.ebi.ac.uk" /> -->
<!-- CSS: implied media=all -->
<!-- CSS concatenated and minified via ant build script-->
<!-- <link rel="stylesheet" href="https://dev.ebi.emblstatic.net/web_guidelines/EBI-Framework/v1.3/css/ebi-global.css" type="text/css" media="all" /> -->
<link rel="stylesheet" href="https://dev.ebi.emblstatic.net/web_guidelines/EBI-Icon-fonts/v1.2/fonts.css" type="text/css"
media="all" />
<!-- Import Choice Library stylesheet-->
<link rel="stylesheet" href="https://ebi.emblstatic.net/web_guidelines/EBI-Framework/v1.2/libraries/Choices/assets/styles/css/choices.min.css">
<!-- Import Datatable CSS -->
<link rel="stylesheet" href="https://cdn.datatables.net/1.10.16/css/jquery.dataTables.min.css">
<!-- Use this CSS file for any custom styling -->
<link rel="stylesheet" href="css/app.css" type="text/css" media="all" />
<!-- If you have a custom header image or colour -->
<!--
<meta name="ebi:masthead-color" content="#000" />
<meta name="ebi:masthead-image" content="//www.ebi.ac.uk/web_guidelines/EBI-Framework/images/backgrounds/embl-ebi-background.jpg" />
-->
<!-- you can replace this with theme-[projectname].css. See http://www.ebi.ac.uk/web/style/colour for details of how to do this -->
<!-- also inform ES so we can host your colour palette file -->
<!-- <link rel="stylesheet" href="https://dev.ebi.emblstatic.net/web_guidelines/EBI-Framework/v1.3/css/theme-embl-petrol.css" type="text/css" media="all" /> -->
<!-- end CSS-->
</head>
<body class="level2">
<!-- add any of your classes or IDs -->
<div class="expand-menu show-for-small-only">
<div class="columns small-2 full-height close-wrapper text-center padding-vertical-15">
<a>
<i class="icon icon-functional" data-icon="x" data-responsive-toggle="expand-menu"></i>
</a>
</div>
<div class="columns small-10 background-color-primary full-height">
<ul class="vertical menu pdx-mobile-menu" data-responsive-menu="drilldown small-accordion">
<li>
<a href="#">Pages</a>
<ul class="menu">
<li>
<a href="page1.html">Page 1</a>
</li>
<li>
<a href="page2.html">Page 2</a>
</li>
<li>
<a href="page3.html">Page 3</a>
</li>
</ul>
</li>
<li class="active">
<a href="#">Models</a>
</li>
<li>
<a href="#">PDX Standard</a>
</li>
<li>
<a href="#">Contacts</a>
</li>
<li>
<a href="#">Join us</a>
</li>
</ul>
</div>
</div>
<div content="content-wrapper">
<div id="skip-to">
<a href="#content">Skip to main content</a>
</div>
<div id="content">
<div data-sticky-container>
<header id="masthead" class="masthead" data-sticky data-options="marginTop: 0">
<div class="masthead-inner row">
<div class="columns medium-2 small-4 log-column" id="local-title">
<h1>
<a href="index.html" title="Back to [service-name] homepage">
<img src="images/logo.png" class="padding-15" />
</a>
</h1>
</div>
<!-- Desktop Menu-->
<div class="columns medium-10 menu-column padding-vertical-30 hide-for-small-only" id="local-nav">
<nav>
<ul id="local-nav" class="dropdown menu main-menu float-right" data-dropdown-menu data-description="navigational">
<li>
<a href="#">Pages</a>
<ul class="menu">
<li>
<a href="page1.html">Page 1</a>
</li>
<li>
<a href="page2.html">Page 2</a>
</li>
<li>
<a href="page3.html">Page 3</a>
</li>
</ul>
</li>
<li class="active">
<a href="#">Models</a>
</li>
<li>
<a href="#">PDX Standard</a>
</li>
<li>
<a href="#">Contacts</a>
</li>
<li>
<a href="#">Join us</a>
</li>
</ul>
</nav>
</div>
<!-- Mobile Menu -->
<div class="columns small-4 show-for-small-only padding-vertical-15 text-right">
<a class="menu-toggle">
<i class="icon icon-functional" data-icon="M" data-toggle data-responsive-toggle="expand-menu"></i>
</a>
</div>
</div>
</header>
</div>
<!-- Suggested layout containers -->
<section id="main-content-area" class="row" role="main">
<!-- Your menu structure should make a breadcrumb redundant, but if a breadcrump is needed uncomment the below -->
<nav aria-label="You are here:" role="navigation">
<ul class="breadcrumbs columns">
<li>
<a href="#">Home</a>
</li>
<li>
<span class="show-for-sr">Current: </span> Blank boilerplate
</li>
</ul>
</nav>
<div class="columns">
<section>
<h2>[page-title]</h2>
<p>Your content</p>
</section>
<section>
<h3>Level 3 heading</h3>
<p>More content in a full-width container.</p>
<h4>Level 4 heading</h4>
<p>More content in a full-width container.</p>
</section>
<section id="kitchen-sink">
<p>
<a href="#" class="button primary">Button primary</a>
</p>
<p>
<a href="#" class="button secondary">Button secondary</a>
</p>
<p>
<a href="#" class="button terciary">Button terciary</a>
</p>
<p>
<a href="#" class="button plus">Button plus</a>
</p>
<p>
<a href="#" class="button more">Button more</a>
</p>
<p>
<a href="#" class="button more down">Button down</a>
</p>
<p>
<a href="#" class="button more outline large">Button Outline</a>
</p>
<p>
<a href="#" class="button more outline secondary large">Button Outline</a>
</p>
<p>
<a href="#" class="button more outline secondary large bold">Button Outline</a>
</p>
<p>
<a href="#" class="button outline secondary large bold">Button icon
<i class="icon icon-functional" data-icon="="></i>
</a>
</p>
<ul>
<li>Unorderred list</li>
<li>Unorderred list</li>
<li>Unorderred list</li>
</ul>
<p>
<span class="badge">1</span> badge</p>
<br>
<br>
<ul class="tabs" data-tabs id="example-tabs">
<li class="tabs-title is-active">
<a href="#panel1" aria-selected="true">Tab 1</a>
</li>
<li class="tabs-title">
<a data-tabs-target="panel2" href="#panel2">Tab 2</a>
</li>
</ul>
<div class="tabs-content" data-tabs-content="example-tabs">
<div class="tabs-panel is-active" id="panel1">
<p>Vivamus hendrerit arcu sed erat molestie vehicula. Sed auctor neque eu tellus rhoncus ut eleifend nibh porttitor.
Ut in nulla enim. Phasellus molestie magna non est bibendum non venenatis nisl tempor. Suspendisse dictum
feugiat nisl ut dapibus.</p>
</div>
<div class="tabs-panel" id="panel2">
<p>Suspendisse dictum feugiat nisl ut dapibus. Vivamus hendrerit arcu sed erat molestie vehicula. Ut in nulla
enim. Phasellus molestie magna non est bibendum non venenatis nisl tempor. Sed auctor neque eu tellus rhoncus
ut eleifend nibh porttitor.</p>
</div>
</div>
<br>
<ul class="tabs style-2" data-tabs id="example2-tabs">
<li class="tabs-title is-active">
<a href="#panel12" aria-selected="true">Tab 1</a>
</li>
<li class="tabs-title">
<a data-tabs-target="panel22" href="#panel2">Tab 2</a>
</li>
</ul>
<div class="tabs-content style-2" data-tabs-content="example2-tabs">
<div class="tabs-panel is-active" id="panel12">
<p>Vivamus hendrerit arcu sed erat molestie vehicula. Sed auctor neque eu tellus rhoncus ut eleifend nibh porttitor.
Ut in nulla enim. Phasellus molestie magna non est bibendum non venenatis nisl tempor. Suspendisse dictum
feugiat nisl ut dapibus.</p>
</div>
<div class="tabs-panel" id="panel22">
<p>Suspendisse dictum feugiat nisl ut dapibus. Vivamus hendrerit arcu sed erat molestie vehicula. Ut in nulla
enim. Phasellus molestie magna non est bibendum non venenatis nisl tempor. Sed auctor neque eu tellus rhoncus
ut eleifend nibh porttitor.</p>
</div>
</div>
<hr/>
<ul class="vertical menu accordion-menu" data-accordion-menu>
<li>
<a href="#">Strain</a>
<ul class="menu vertical nested ">
<li>
<a href="#">Item 1B</a>
</li>
<li>
<a href="#">Item 1C</a>
</li>
</ul>
</li>
<li>
<a href="#">Site</a>
<ul class="menu vertical nested is-active">
<li>
<span class="facet">
<input id="checkbox12" type="checkbox">
<label for="checkbox12">Facet option (9)</label>
</span>
</li>
<li>
<a href="#">Facet option (22)</a>
</li>
</ul>
</li>
<li>
<a href="#">Item 3</a>
</li>
</ul>
<hr/>
<!-- Search FORM -->
<form class="main-search">
<div class="row">
<fieldset>
<div class="margin-bottom-none small-collapse">
<!-- Large screen -->
<div class="columns small-2 small-push-2 margin-bottom-small padding-top-large hide-for-small-only">
Enter your search here
</div>
<!-- Small screen-->
<div class="columns small-7 medium-push-2 small-push-3 margin-bottom-none search-text-wrapper show-for-small-only">
Enter your search here
</div>
<div class="columns small-7 medium-push-2 small-push-3 margin-bottom-none search-text-wrapper">
<input id="query" class="margin-bottom-none" title="EBI Search" tabindex="2" type="text" name="query" value="" size="35"
maxlength="2048" placeholder="E.G. Breast cancer" required="">
<span class="form-error margin-top-small">
You need to enter a search query.
</span>
</div>
<div class="columns small-1 medium-push-2 small-push-3 margin-bottom-none ">
<input id="search_submit" class="button icon icon-functional margin-bottom-none" tabindex="3" type="submit" name="submit1"
value="1" style="line-height:.9">
</div>
<!-- <input id="allebi" type="hidden" name="db" value="allebi" checked="checked" /> -->
<input type="hidden" name="requestFrom" value="ebi_index">
</div>
</fieldset>
<fieldset>
<div class="medium-push-4 small-push-3 small-8 small padding-top-medium">
<a href="" id="main-search-advanced-link" class="font-color-dark-gray font-style-underline ">Advanced Search</a>
</div>
</fieldset>
</div>
</form>
<hr/>
<!-- Table Layout -->
<div class="responsive-table">
<table class="unstriped pdx-table">
<thead>
<tr>
<th>Model</th>
<th>Type</th>
<th>Histology</th>
<th>Stage</th>
<th>Status</th>
<th>Strain</th>
<th>Data</th>
<th>Provider</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<a>
<i class="icon icon-generic" data-icon="i"></i> PDX123</a>
</td>
<td>Colon.</td>
<td>Colon something</td>
<td>IV</td>
<td>Metastatic</td>
<td>NODSCID</td>
<td>Exome Expression</td>
<td>JAX</td>
</tr>
<tr>
<td>
<a>
<i class="icon icon-generic" data-icon="i"></i> PDX123</a>
</td>
<td>Colon.</td>
<td>Colon something</td>
<td>IV</td>
<td>Metastatic</td>
<td>NODSCID</td>
<td>Exome Expression</td>
<td>JAX</td>
</tr>
<tr>
<td>
<a>
<i class="icon icon-generic" data-icon="i"></i> PDX123</a>
</td>
<td>Colon.</td>
<td>Colon something</td>
<td>IV</td>
<td>Metastatic</td>
<td>NODSCID</td>
<td>Exome Expression</td>
<td>JAX</td>
</tr>
</tbody>
</table>
</div>
<div class="responsive-table">
<table class="unstriped pdx-table head-left">
<thead>
<tr>
<th colspan="2">Clinical / Patient</th>
</tr>
</thead>
<tbody>
<tr>
<th class="text-left">Model</th>
<td>Colon something</td>
</tr>
<tr>
<th class="text-left">Type</th>
<td>NODSCID</td>
</tr>
<tr>
<th class="text-left">Histology</th>
<td>NODSCID</td>
</tr>
</tbody>
</table>
</div>
<ul class="pagination pdx-pagination" role="navigation" aria-label="Pagination">
<li class="pagination-previous disabled">Previous
<span class="show-for-sr">page</span>
</li>
<li class="current">
<span class="show-for-sr">You're on page</span> 1</li>
<li>
<a href="#" aria-label="Page 2">2</a>
</li>
<li>
<a href="#" aria-label="Page 3">3</a>
</li>
<li>
<a href="#" aria-label="Page 4">4</a>
</li>
<li class="ellipsis" aria-hidden="true"></li>
<li>
<a href="#" aria-label="Page 12">12</a>
</li>
<li>
<a href="#" aria-label="Page 13">13</a>
</li>
<li class="pagination-next">
<a href="#" aria-label="Next page">Next
<span class="show-for-sr">page</span>
</a>
</li>
</ul>
<!-- Data table Example -->
<table id="example-datatable" class="display datatable-pdx" cellspacing="0" width="100%">
<thead>
<tr>
<th>First name</th>
<th>Last name</th>
<th>Position</th>
<th>Office</th>
<th>Salary</th>
</tr>
</thead>
<tbody>
<tr>
<td>Tiger</td>
<td>Nixon</td>
<td>System Architect</td>
<td>Edinburgh</td>
<td>$320,800</td>
</tr>
<tr>
<td>Garrett</td>
<td>Winters</td>
<td>Accountant</td>
<td>Tokyo</td>
<td>$170,750</td>
</tr>
<tr>
<td>Ashton</td>
<td>Cox</td>
<td>Junior Technical Author</td>
<td>San Francisco</td>
<td>$86,000</td>
</tr>
<tr>
<td>Cedric</td>
<td>Kelly</td>
<td>Senior Javascript Developer</td>
<td>Edinburgh</td>
<td>$433,060</td>
</tr>
<tr>
<td>Airi</td>
<td>Satou</td>
<td>Accountant</td>
<td>Tokyo</td>
<td>$162,700</td>
</tr>
<tr>
<td>Brielle</td>
<td>Williamson</td>
<td>Integration Specialist</td>
<td>New York</td>
<td>$372,000</td>
</tr>
<tr>
<td>Herrod</td>
<td>Chandler</td>
<td>Sales Assistant</td>
<td>San Francisco</td>
<td>$137,500</td>
</tr>
<tr>
<td>Rhona</td>
<td>Davidson</td>
<td>Integration Specialist</td>
<td>Tokyo</td>
<td>$327,900</td>
</tr>
<tr>
<td>Colleen</td>
<td>Hurst</td>
<td>Javascript Developer</td>
<td>San Francisco</td>
<td>$205,500</td>
</tr>
<tr>
<td>Sonya</td>
<td>Frost</td>
<td>Software Engineer</td>
<td>Edinburgh</td>
<td>$103,600</td>
</tr>
<tr>
<td>Jena</td>
<td>Gaines</td>
<td>Office Manager</td>
<td>London</td>
<td>$90,560</td>
</tr>
<tr>
<td>Quinn</td>
<td>Flynn</td>
<td>Support Lead</td>
<td>Edinburgh</td>
<td>$342,000</td>
</tr>
<tr>
<td>Charde</td>
<td>Marshall</td>
<td>Regional Director</td>
<td>San Francisco</td>
<td>$470,600</td>
</tr>
<tr>
<td>Haley</td>
<td>Kennedy</td>
<td>Senior Marketing Designer</td>
<td>London</td>
<td>$313,500</td>
</tr>
<tr>
<td>Tatyana</td>
<td>Fitzpatrick</td>
<td>Regional Director</td>
<td>London</td>
<td>$385,750</td>
</tr>
<tr>
<td>Michael</td>
<td>Silva</td>
<td>Marketing Designer</td>
<td>London</td>
<td>$198,500</td>
</tr>
<tr>
<td>Paul</td>
<td>Byrd</td>
<td>Chief Financial Officer (CFO)</td>
<td>New York</td>
<td>$725,000</td>
</tr>
<tr>
<td>Gloria</td>
<td>Little</td>
<td>Systems Administrator</td>
<td>New York</td>
<td>$237,500</td>
</tr>
<tr>
<td>Bradley</td>
<td>Greer</td>
<td>Software Engineer</td>
<td>London</td>
<td>$132,000</td>
</tr>
<tr>
<td>Dai</td>
<td>Rios</td>
<td>Personnel Lead</td>
<td>Edinburgh</td>
<td>$217,500</td>
</tr>
<tr>
<td>Jenette</td>
<td>Caldwell</td>
<td>Development Lead</td>
<td>New York</td>
<td>$345,000</td>
</tr>
<tr>
<td>Yuri</td>
<td>Berry</td>
<td>Chief Marketing Officer (CMO)</td>
<td>New York</td>
<td>$675,000</td>
</tr>
<tr>
<td>Caesar</td>
<td>Vance</td>
<td>Pre-Sales Support</td>
<td>New York</td>
<td>$106,450</td>
</tr>
<tr>
<td>Doris</td>
<td>Wilder</td>
<td>Sales Assistant</td>
<td>Sidney</td>
<td>$85,600</td>
</tr>
<tr>
<td>Angelica</td>
<td>Ramos</td>
<td>Chief Executive Officer (CEO)</td>
<td>London</td>
<td>$1,200,000</td>
</tr>
<tr>
<td>Gavin</td>
<td>Joyce</td>
<td>Developer</td>
<td>Edinburgh</td>
<td>$92,575</td>
</tr>
<tr>
<td>Jennifer</td>
<td>Chang</td>
<td>Regional Director</td>
<td>Singapore</td>
<td>$357,650</td>
</tr>
<tr>
<td>Brenden</td>
<td>Wagner</td>
<td>Software Engineer</td>
<td>San Francisco</td>
<td>$206,850</td>
</tr>
<tr>
<td>Fiona</td>
<td>Green</td>
<td>Chief Operating Officer (COO)</td>
<td>San Francisco</td>
<td>$850,000</td>
</tr>
<tr>
<td>Shou</td>
<td>Itou</td>
<td>Regional Marketing</td>
<td>Tokyo</td>
<td>$163,000</td>
</tr>
<tr>
<td>Michelle</td>
<td>House</td>
<td>Integration Specialist</td>
<td>Sidney</td>
<td>$95,400</td>
</tr>
<tr>
<td>Suki</td>
<td>Burks</td>
<td>Developer</td>
<td>London</td>
<td>$114,500</td>
</tr>
<tr>
<td>Prescott</td>
<td>Bartlett</td>
<td>Technical Author</td>
<td>London</td>
<td>$145,000</td>
</tr>
<tr>
<td>Gavin</td>
<td>Cortez</td>
<td>Team Leader</td>
<td>San Francisco</td>
<td>$235,500</td>
</tr>
<tr>
<td>Martena</td>
<td>Mccray</td>
<td>Post-Sales support</td>
<td>Edinburgh</td>
<td>$324,050</td>
</tr>
<tr>
<td>Unity</td>
<td>Butler</td>
<td>Marketing Designer</td>
<td>San Francisco</td>
<td>$85,675</td>
</tr>
<tr>
<td>Howard</td>
<td>Hatfield</td>
<td>Office Manager</td>
<td>San Francisco</td>
<td>$164,500</td>
</tr>
<tr>
<td>Hope</td>
<td>Fuentes</td>
<td>Secretary</td>
<td>San Francisco</td>
<td>$109,850</td>
</tr>
<tr>
<td>Vivian</td>
<td>Harrell</td>
<td>Financial Controller</td>
<td>San Francisco</td>
<td>$452,500</td>
</tr>
<tr>
<td>Timothy</td>
<td>Mooney</td>
<td>Office Manager</td>
<td>London</td>
<td>$136,200</td>
</tr>
<tr>
<td>Jackson</td>
<td>Bradshaw</td>
<td>Director</td>
<td>New York</td>
<td>$645,750</td>
</tr>
<tr>
<td>Olivia</td>
<td>Liang</td>
<td>Support Engineer</td>
<td>Singapore</td>
<td>$234,500</td>
</tr>
<tr>
<td>Bruno</td>
<td>Nash</td>
<td>Software Engineer</td>
<td>London</td>
<td>$163,500</td>
</tr>
<tr>
<td>Sakura</td>
<td>Yamamoto</td>
<td>Support Engineer</td>
<td>Tokyo</td>
<td>$139,575</td>
</tr>
<tr>
<td>Thor</td>
<td>Walton</td>
<td>Developer</td>
<td>New York</td>
<td>$98,540</td>
</tr>
<tr>
<td>Finn</td>
<td>Camacho</td>
<td>Support Engineer</td>
<td>San Francisco</td>
<td>$87,500</td>
</tr>
<tr>
<td>Serge</td>
<td>Baldwin</td>
<td>Data Coordinator</td>
<td>Singapore</td>
<td>$138,575</td>
</tr>
<tr>
<td>Zenaida</td>
<td>Frank</td>
<td>Software Engineer</td>
<td>New York</td>
<td>$125,250</td>
</tr>
<tr>
<td>Zorita</td>
<td>Serrano</td>
<td>Software Engineer</td>
<td>San Francisco</td>
<td>$115,000</td>
</tr>
<tr>
<td>Jennifer</td>
<td>Acosta</td>
<td>Junior Javascript Developer</td>
<td>Edinburgh</td>
<td>$75,650</td>
</tr>
<tr>
<td>Cara</td>
<td>Stevens</td>
<td>Sales Assistant</td>
<td>New York</td>
<td>$145,600</td>
</tr>
<tr>
<td>Hermione</td>
<td>Butler</td>
<td>Regional Director</td>
<td>London</td>
<td>$356,250</td>
</tr>
<tr>
<td>Lael</td>
<td>Greer</td>
<td>Systems Administrator</td>
<td>London</td>
<td>$103,500</td>
</tr>
<tr>
<td>Jonas</td>
<td>Alexander</td>
<td>Developer</td>
<td>San Francisco</td>
<td>$86,500</td>
</tr>
<tr>
<td>Shad</td>
<td>Decker</td>
<td>Regional Director</td>
<td>Edinburgh</td>
<td>$183,000</td>
</tr>
<tr>
<td>Michael</td>
<td>Bruce</td>
<td>Javascript Developer</td>
<td>Singapore</td>
<td>$183,000</td>
</tr>
<tr>
<td>Donna</td>
<td>Snider</td>
<td>Customer Support</td>
<td>New York</td>
<td>$112,000</td>
</tr>
</tbody>
</table>
<hr>
<!-- Filter Map -->
<div class="row">
<div class="columns large-3">
<h4 class="block-title clearfix">
<span class="float-left">Filter By:</span>
</h4>
<ul class="accordion pdx-accordion-1" data-accordion data-multi-expand="true">
<li class="accordion-item is-active" data-accordion-item>
<!-- Accordion tab title -->
<a href="#" class="accordion-title">Title 1</a>
<!-- Accordion tab content: it would start in the open state due to using the `is-active` state class. -->
<div class="accordion-content" data-tab-content>
<select name="topic" required id="topic" class="form-control choices" multiple>
<option value="color">Color</option>
<option value="metastatic">Metastatic</option>
</select>
</div>
</li>
<li class="accordion-item" data-accordion-item>
<!-- Accordion tab title -->
<a href="#" class="accordion-title">Title 2</a>
<!-- Accordion tab content: it would start in the open state due to using the `is-active` state class. -->
<div class="accordion-content" data-tab-content>
<ul class="accordion pdx-accordion-2" data-accordion data-multi-expand="true" data-allow-all-closed="true">
<li class="accordion-item is-active" data-accordion-item>
<a href="#" class="accordion-title">Site</a>
<div class="accordion-content" data-tab-content>
<div class="large-form">
<div class="checkbox-item">
<input id="box1" type="checkbox" />
<label for="box1">Checkbox 1</label>
</div>
<div class="checkbox-item">
<input id="box2" type="checkbox" />
<label for="box2">Checkbox 2</label>
</div>
<div class="checkbox-item">
<input id="box3" type="checkbox" />
<label for="box3">Checkbox 3</label>
</div>
</div>
</div>
</li>
<li class="accordion-item is-active" data-accordion-item>
<a href="#" class="accordion-title">Color</a>
<div class="accordion-content" data-tab-content>
<div class="large-form">
<div class="checkbox-item">
<input id="box4" type="checkbox" />
<label for="box4">Checkbox 4</label>
</div>
<div class="checkbox-item">
<input id="box5" type="checkbox" />
<label for="box5">Checkbox 5</label>
</div>
<div class="checkbox-item">
<input id="box6" type="checkbox" />
<label for="box6">Checkbox 6</label>
</div>
</div>
</div>
</li>
<li class="accordion-item is-active" data-accordion-item>
<a href="#" class="accordion-title">Size</a>
<div class="accordion-content" data-tab-content>
<div class="large-form">
<div class="checkbox-item">
<input id="box7" type="checkbox" />
<label for="box7">Checkbox 7</label>
</div>
<div class="checkbox-item">
<input id="box8" type="checkbox" />
<label for="box8">Checkbox 8</label>
</div>
</div>
</div>
</li>
</ul>
</div>
</li>
</ul>
</div>
</div>
<!-- End if Filter By -->
<hr>
<!-- Counter Link -->
<h5 class="block-title uppercase font-color-blue">Cancer Type:</h5>
<div class="counter-link-item">
<span class="item-number">112</span>
<a href="#" class="item-link">Lung Cancer</a>
</div>
<div class="counter-link-item">
<span class="item-number">84</span>
<a href="#" class="item-link">Breast Cancer</a>
</div>
<div class="counter-link-item">
<span class="item-number">27</span>
<a href="#" class="item-link">Colorectal Cancer</a>