-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
549 lines (525 loc) · 32 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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8"/>
<title>GU272 Digital Exploration</title>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-123347692-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-123347692-1');
</script>
<!--Fonts-->
<link href="https://fonts.googleapis.com/css?family=IM+Fell+Double+Pica|IM+Fell+English+SC|Oswald" rel="stylesheet">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.0.10/css/all.css" integrity="sha384-+d0P83n9kaQMCwj8F4RJB66tzIwOKmrdb46+porD/OvrJ+37WqIM7UoBtwHO6Nlg" crossorigin="anonymous">
<!--Dependency Stylesheets-->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<link type="text/css" rel="stylesheet" href="./dependencies/jquery.fullpage.css">
<link rel="stylesheet" href="./css/enjoyhint.css">
<!-- Visualization Style Sheets-->
<!-- <link type="text/css" rel="stylesheet" href="./css/timeline.css"/> -->
<link type="text/css" rel="stylesheet" href="./css/demographics.css"/>
<link type="text/css" rel="stylesheet" href="./css/slaveTree.css"/>
<!--Pathways Style Sheets-->
<link type="text/css" rel="stylesheet" href="./css/pathwaysVisualization.css"/>
<!--Integration Style Sheets-->
<link type="text/css" rel="stylesheet" href="./css/style.css"/>
</head>
<body>
<!--Dependency scripts-->
<script type="text/javascript" src="dependencies/jquery.min.js"></script>
<script type="text/javascript" src="dependencies/d3.v2.min.js"></script> <!--Note that this version of d3.js is modified to be compatable with d3.v4.js - to do this every instance of d3 in the file has been changed to d3v2-->
<script type="text/javascript" src="dependencies/d3.v4.min.js"></script>
<script type="text/javascript" src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<script type="text/javascript" src="dependencies/type-ahead.min.js"></script>
<script type="text/javascript" src="dependencies/fisheye.js"></script>
<script type="text/javascript" src="./dependencies/jquery.fullpage.js"></script>
<!--Main Controller scripts-->
<script type="text/javascript" src="./js/packages.js"></script>
<script type="text/javascript" src="./js/helperFunctions.js"></script>
<script type="text/javascript" src="./js/pageController.js"></script>
<!--Pathways scripts-->
<script type="text/javascript" src="./js/familyData.js"></script>
<script type="text/javascript" src="./js/chordDiagram.js"></script>
<script type="text/javascript" src="./js/pathwayControls.js"></script>
<div id="fullpage">
<div id="header" class="header-bar">
<a href="#home" style="color: white; display: inline-block; float: left; margin-left: 20px; height: 100%">
<div class="heading-container">
<div class="gu272">GU272</div>
<div class="category">| <span id="heading-bar-subtitle">Demographics</span></div>
</div>
<!--<div class="header-bar-title" style="display: inline-block; float: left; margin-left: 7px; margin-top: 9px; font-size: 22px;">Title | Subtitle (change into the fonts you are already using, also subtitle changes with page)</div>-->
<!--<div class="header-bar-title" style="display: inline-block; float: left; margin-top: 3px;">GU</div>-->
<!--<div class="header-bar-title" style="display: inline-block; float: left; margin-top: -3px;">272</div>-->
<!--<!–<div class="header-bar-title" style="display: inline-block; float: left; margin-top: 9px; margin-left: 5px; font-size: 18px;">DIGITAL EXPLORER</div>–>-->
<!--<div class="header-bar-title" style="display: inline-block; float: left; margin-left: 7px; margin-top: 9px; font-size: 22px;">DIGITAL EXPLORER</div>-->
</a>
<div class="nav-bar-links-container">
<div class="link-item">
<a class="gu272History" href="#gu272History">History</a>
</div>
<div class="link-item">
<a class="gu272Passage" href="#gu272Passage">Passage</a>
</div>
<div class="link-item">
<a class="pathways" href="#pathways">Pathways</a>
</div>
<div class="link-item">
<a class="gu272Demographics" href="#gu272Demographics">Demographics</a>
</div>
<div class="link-item">
<a class="gu272FamilyTrees" href="#gu272FamilyTrees">Family Trees</a>
</div>
<div class="link-item">
<a class="about" href="#about">About</a>
</div>
</div>
</div>
<div id="titlePage" class="section">
<div id="cover" class="page">
<div id="coming-soon" class="page-header">
<h3>The GU 272 Data Visualization is undergoing an upgrade. Sorry for the inconvenience. We'll be back!</h3>
</div>
<div class="nav-bar">
<div class="nav-bar-links-container">
<div class="link-item">
<a class="gu272History" href="#gu272History">History</a>
</div>
<div class="link-item">
<a class="gu272Passage" href="#gu272Passage">Passage</a>
</div>
<div class="link-item">
<a class="pathways" href="#pathways">Pathways</a>
</div>
<div class="link-item">
<a class="gu272Demographics" href="#gu272Demographics">Demographics</a>
</div>
<div class="link-item">
<a class="gu272FamilyTrees" href="#gu272FamilyTrees">Family Trees</a>
</div>
<div class="link-item">
<a class="about" href="#about">About</a>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="content">
<h2 class="top">meet the</h2>
<h1>GU272</h1>
<h2 class="top">a digital exploration of</h2>
<h2> georgetown's history of slavery</h2>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="historyPage" class="section">
<div style="width: 100%; height: 54px;">
</div>
<div style="width: 100%; position: relative">
<div class="container h-100">
<div class="row justify-content-center align-self-center">
<div class="col-lg-6 col-xs-12 py-3">
<div class="container d-flex h-100">
<div class="justify-content-center align-self-center">
<h3>THE SALE</h3>
<hr>
<div class="timeline-text">
In June 1838, the head of the Maryland Jesuits Rev. Thomas Mulledy S.J. sold 272 enslaved men, women, and children. The buyers were Henry Johnson, a member of the House of Representatives from Louisiana, and Jesse Beatty, another Louisiana planter. The sale was worth about $3.3 million in today's dollars. Part of the proceeds went to pay the debts of Georgetown College.
<br><br>
This project uses data visualization to illustrate information such as the names, ages, journeys, and ultimately the stories of the GU272.
<br><br>
Historical and genealogical research about the GU272 is a work in progress. The data reported below is provided primarily for the purpose of demonstrating the power and usefulness of some data visualization tools and techniques. This data may contain unintentional errors, inaccuracies, and omissions.
</div>
</div>
</div>
</div>
<div class="col-lg-6 col-xs-12 py-3">
<div class="container d-flex h-100">
<div class="justify-content-center align-self-center">
<figure>
<a href="http://slaveryarchive.georgetown.edu/items/show/1" id="bill-of-sale">
<img src="images/bill-of-sale.jpg" class="img-fluid" alt="Bill of Sale">
</a>
</figure>
<figcaption class="figure-caption">Article of agreement between Mulledy, Beatty, and Johnson. June 1838, Maryland Province Archives, Booth Family Center for Special Collections, Georgetown University.</figcaption>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="passagePage" class="section">
<div style="width: 100%; height: 54px; background: white;">
</div>
<div style="width: 100%; position: relative">
<div class="container h-100">
<div class="row justify-content-center align-self-center">
<div class="col-lg-5 col-xs-12 py-3">
<div class="container d-flex h-100">
<div class="justify-content-center align-self-center">
<h3>THE SECOND MIDDLE PASSAGE</h3>
<hr>
<div class="timeline-text">
The GU272 were shipped from Maryland to Louisiana to work on two sugar plantations. They were part of a “second middle passage” that sent a million enslaved Americans to the Deep South.
<div class="button">
<button id="playButton" type="button" class="btn btn-sm btn-primary my-4 button">Play Route</button>
</div>
</div>
</div>
</div>
</div>
<div id="routeMapColumn" class="col-lg-7 col-xs-12">
<div id="routeMapContainer" class="h-100 w-100 px-3">
</div>
</div>
</div>
</div>
</div>
</div>
<div id="pathwaysPage" class="section">
<div style="width: 100%; height: 54px; background: white;">
</div>
<div style="background: #f4f5f8; width: 100%; height: calc(100VH - 54px); position: relative">
<div id="left-container" class="stage-shrink" style="float: left; width: 60%; height: 100%; border-top: 1px #eceef1 solid; overflow: scroll;">
<!--Map data-->
<div id="mapContainer" class="opacity0" style="width: 100%; height: 100%; text-align: center; position:relative; overflow: hidden">
<div id="noMapData" class="no-map-data-container">
<label class="no-map-data-label">Choose an enslaved person to view on the map where the Jesuits sold the person</label>
</div>
<label id="mapOtherLabel" class="map-other-label hidden-other-label">
No buyer data
</label>
<div id="mapBox" style="height: 553px; width: 600px; overflow: visible; display: inline-block; position: absolute;margin: auto;top: 0;right: 0;bottom: 0;left: 0;">
<div id="pathwaysHistory" class="page" style="width: 100%; height: 1630px;">
<div id="pathwaysMap" class="fixed" style="width: 100%; height: 100%; float: left;"></div>
</div>
</div>
</div>
<!--Roots Wheel container-->
<div id="bundle" style="position: relative; min-width: 100%; display: inline-block"></div>
</div>
<div id="right-positioning-container" class="arrow-positioning-container stage-open">
<!--Button to move panel-->
<div id="move-button" class="arrow-container">
<i id="rightButton" class="fas fa-angle-right right-button"></i>
<i id="leftButton" style="display: none" class="fas fa-angle-left right-button"></i>
</div>
</div>
<div id="right-container" class="right-container stage-open">
<!--Selector-->
<div id="selector-box" style="display: block; margin-bottom: 10px">
<div class="btn-group btn-group-toggle visual" data-toggle="buttons">
<label class="btn btn-sm btn-secondary active visual" style="width: 50%">
<input type="radio" name="options" id="chordSelector" autocomplete="off" checked> Roots Wheel
</label>
<label id="mapSelectorButton" class="btn btn-sm btn-secondary visual" style="width: 50%">
<input type="radio" name="options" id="mapSelector" autocomplete="off"> Map
</label>
<!--Family Trees box - possible addition to visualization-->
<!--<label class="btn btn-sm btn-secondary visual">-->
<!--<input type="radio" name="options" id="familySelector" autocomplete="off"> Family Trees-->
<!--</label>-->
</div>
</div>
<label class="label-header larger-header">Filter Enslaved Persons</label>
<!-- SM: Added form row and column class to condense control grid -->
<div class="form-row">
<div class="col">
<!--Family-->
<label class="label-header">Family:</label>
<div class="filter-input-container">
<input id="inputFamily" style="flex-grow: 1" type="text" class="form-control form-control-sm typeahead" data-provide="typeahead">
</div>
<div class="sub-label" style="margin-top: -5px; display: block; margin-bottom: 5px">(Search for enslaved person and will filter to show people in that slave's family)</div>
</div>
<!--Age-->
<div class="col">
<label class="label-header">Age:</label>
<div class="filter-input-container">
<div class="dropdown input-dropdown" style="flex-grow: 1">
<button class="btn btn-sm btn-secondary dropdown-toggle input-filter" style="width: 132px" type="button" id="dropdownMenuButton" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Greater than
</button>
<div class="dropdown-menu" aria-labelledby="dropdownMenuButton">
<a class="dropdown-item" id="dropdownOptionEquals" href="#dropdownOptionEqualsPressed">Equals</a>
<a class="dropdown-item" id="dropdownOptionGreaterThan" href="#dropdownOptionGreaterThanPressed">Greater than</a>
<a class="dropdown-item" id="dropdownOptionLessThan" href="#dropdownOptionLessThanPressed">Less than</a>
</div>
</div>
<input id="inputAge" type="number" style="flex-grow: 1; border-top-left-radius: 0; border-bottom-left-radius: 0" type="text" class="form-control form-control-sm">
</div>
</div>
</div>
<div class="form-row">
<!--Plantation-->
<div class="col-sm-5">
<label class="label-header">Plantation:</label>
<div class="filter-input-container">
<div class="dropdown" style="flex-grow: 1">
<button class="btn btn-sm btn-secondary dropdown-toggle input-filter" style="width: 100%" type="button" id="dropdownPlantationButton" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Any
</button>
<div class="dropdown-menu" aria-labelledby="dropdownPlantationButton">
<a class="dropdown-item" id="dropdownOptionAnyPlantation" href="#dropdownOptionAnyPlantationPressed">Any</a>
<a class="dropdown-item" id="dropdownOptionWhiteMarsh" href="#dropdownOptionWhiteMarshPressed">White Marsh</a>
<a class="dropdown-item" id="dropdownOptionThomasMonor" href="#dropdownOptionThomasMonorPressed">St. Thomas's Manor</a>
<a class="dropdown-item" id="dropdownOptionSInigoes" href="#dropdownOptionSInigoesPressed">St. Inigoes</a>
<a class="dropdown-item" id="dropdownOptionNewtown" href="#dropdownOptionNewtownPressed">Newtown</a>
</div>
</div>
</div>
</div>
<!--Buyer-->
<div class="col-sm-4">
<label class="label-header" data-intro='Hello step two!'>Buyer:</label>
<div class="filter-input-container">
<div class="dropdown" style="flex-grow: 1">
<button class="btn btn-sm btn-secondary dropdown-toggle input-filter" style="width: 100%" type="button" id="dropdownBuyerButton" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Any
</button>
<div class="dropdown-menu" aria-labelledby="dropdownBuyerButton">
<a class="dropdown-item" id="dropdownOptionAnyBuyer" href="#dropdownOptionAnyBuyerPressed">Any</a>
<a class="dropdown-item" id="dropdownOptionJBatey" href="#dropdownOptionJBateyPressed">Jesse Batey</a>
<a class="dropdown-item" id="dropdownOptionHJohnson" href="#dropdownOptionHJohnsonPressed">Henry Johson</a>
<a class="dropdown-item" id="dropdownOptionOtherBuyer" href="#dropdownOptionOtherBuyerPressed">Other</a>
</div>
</div>
</div>
</div>
<!--Gender-->
<div class="col-sm-3">
<label class="label-header">Gender:</label>
<div class="filter-input-container">
<div class="dropdown" style="flex-grow: 1">
<button class="btn btn-sm btn-secondary dropdown-toggle input-filter" style="width: 100%" type="button" id="dropdownGenderButton" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Any
</button>
<div class="dropdown-menu" aria-labelledby="dropdownGenderButton">
<a class="dropdown-item" id="dropdownOptionAnyGender" href="#dropdownOptionAnyGenderPressed">Any</a>
<a class="dropdown-item" id="dropdownOptionMale" href="#dropdownOptionMalePressed">Male</a>
<a class="dropdown-item" id="dropdownOptionFemale" href="#dropdownOptionFemalePressed">Female</a>
</div>
</div>
</div>
</div>
</div>
<!--Katharine Jackson Checkbox - possible addition to visualization-->
<!--<div class="form-check" style="margin-bottom: 5px">-->
<!--<input type="checkbox" class="form-check-input" id="katharineJacksonCheck">-->
<!--<label class="form-check-label" id="checkbox3">Enslaved persons on the Katharine Jackson</label>-->
<!--</div>-->
<!--Filter and Select Buttons-->
<div class="filter-input-container">
<div style="flex-grow: 1"></div>
<!--<input id="inputFamily" style="flex-grow: 1" type="text" class="form-control form-control-sm typeahead" data-provide="typeahead">-->
<button id="resetButton" style="flex-shrink: 1; flex-basis: 100px; margin-left: 10px; border-color: #181818" type="button" class="btn btn-sm btn-light">Reset</button>
<button id="familyButton" style="flex-shrink: 1; flex-basis: 100px; margin-left: 10px" type="button" class="btn btn-sm btn-primary">Filter</button>
</div>
<!--Person Selection Section-->
<div id="person-selection-container">
<label class="label-header larger-header" style="margin-top: 10px">Select Enslaved Person</label>
<!--Enslaved Person-->
<label class="label-header">Person:</label>
<div class="filter-input-container">
<input id="selectPerson" style="flex-grow: 1" type="text" class="form-control form-control-sm typeahead" data-provide="typeahead">
<button id="selectButton" style="flex-shrink: 1; flex-basis: 100px; margin-left: 10px" type="button" class="btn btn-sm btn-primary">Select</button>
</div>
<!--Checkbox-->
<div class="form-check" style="margin-bottom: 5px">
<input type="checkbox" class="form-check-input" id="searchWithinFilterConditionsCheck">
<label class="form-check-label" id="checkbox2">Search for enslaved persons within filter conditions</label>
</div>
</div>
<!--Roots Wheel Controls-->
<div id="chordControlsContainer">
<label class="label-header larger-header" style="margin-top: 10px">Roots Wheel Controls</label>
<!--Chord Controls-->
<label class="label-header">Size:</label>
<input id="multiplierRange" style="position:relative;top:3px; margin-bottom: 15px; width: 100%" type="range" min="60" max="100" value="85">
<!--Checkbox-->
<div class="form-check">
<input type="checkbox" class="form-check-input" id="otherCheckbox">
<label class="form-check-label" id="checkbox">Show enslaved people without buyer data</label>
</div>
<!--Checkbox-->
<div id="magnifyNamesCheckBoxContainer" class="form-check" style="margin-bottom: 5px; margin-top: 10px">
<input type="checkbox" class="form-check-input" id="magnifyNamesConditionBox">
<label class="form-check-label" id="checkbox4">Magnify names when hovering over them (turn off to improve performance)</label>
</div>
</div>
</div>
</div>
</div>
<div id="demographicsPage" class="section">
<div style="width: 100%; height: 54px;">
</div>
<div class="container mx-2 my-5">
<button type="button" class="btn btn-light button">
<img src="images/clicker.svg" style="height: 1.2em; width: 1.2em"></img>
Hover/click graphs for more information
</button>
</div>
<div class="container h-300">
<div class="row">
<div class="col-lg-4 col-sm-12">
<div id="pie" class="graphContainer fixed">
<div class="small-space"></div>
</div>
</div>
<div class="col-lg-4 col-sm-12">
<div class="big-space"></div>
<div id="bar" class="graphContainer fixed">
<div class="small-space"></div>
</div>
</div>
<div class="col-lg-4 col-sm-12">
<div class="big-space"></div>
<div class="big-space"></div>
<div id="scatter" class="graphContainer fixed">
<div class="small-space"></div>
</div>
</div>
</div>
</div>
<div style="height: 30vh"></div>
</div>
<div id="familyTreePage" class="section">
<div style="width: 100%; height: 54px;">
</div>
<div class="familyTreePageContainer">
<div class="row px-3 py-4">
<div class="col">
<button type="button" class="btn btn-light button">
<img src="images/clicker.svg" style="height: 1.2em; width: 1.2em"></img>
Hover/click trees for more information
</button>
</div>
</div>
<div class="row">
<div class="col-lg-4 col-sm-6">
<div class="treeContainer"></div>
</div>
<div class="col-lg-2 col-sm-6" style="padding-left:0px; padding-right:0px">
<div class="treeContainer"></div>
</div>
<div class="col-lg-3 col-sm-6">
<div class="treeContainer"></div>
</div>
<div class="col-lg-3 col-sm-6">
<div class="treeContainer"></div>
</div>
<div class="col-lg-3 col-sm-6">
<div class="treeContainer"></div>
</div>
<div class="col-lg-3 col-sm-6">
<div class="treeContainer"></div>
</div>
<div class="col-lg-3 col-sm-6">
<div class="treeContainer"></div>
</div>
<div class="col-lg-3 col-sm-6">
<div class="treeContainer"></div>
</div>
</div>
</div>
</div>
<div id="aboutPage" class="section">
<div style="background: #f4f5f8; width: 100%; height: calc(100VH - 54px); margin-top:54px; position: relative">
<div class="container d-flex h-100">
<div class="row justify-content-center align-self-center">
<div class="col-lg-6 col-xs-12 px-5 py-5">
<h3>Designed + Built By</h3>
<hr>
<h4>Sabrina Ma</h4>
<p class="about-text">
Georgetown Slavery Archive Digital Fellow 2018
<br>
Computer Science and Business Administration (COL '18)
<br>
<a id="sab-email" href="mailto:slm243@georgetown.edu">Email</a> |
<a id="sab-github" href="https://github.com/sabrinamamamia">Github</a> |
<a id="sab-linkedin" href="https://www.linkedin.com/in/sabrinalma">LinkedIn</a>
</p>
</br><br>
<h4>Jonathan Gibson</h4>
<p class="about-text">
American Studies and Computer Science (COL '19)
<br>
<a id="jon-email" href="mailto:jeg263@georgetown.edu">Email</a> |
<a id="jon-github" href="https://github.com/jeg263">Github</a>
</p>
<br>
<small>Special thanks to <a href="https://gufaculty360.georgetown.edu/s/faculty-profile?netid=ar44">Professor Adam Rothman</a> for the guidance and <a href="http://digitalhumanities.msu.edu/people/sharon-leon/">Professor Sharon Leon</a> for the initial data collection!</small>
</div>
<div class="col-lg-6 col-xs-12 px-5 py-5">
<h3>Learn More</h3>
<hr>
<ul class="about-text">
<li><a id="descendants-website"href="https://www.gu272.net/members/gu272/">GU272 Descendants Association</a></li>
<li><a id="gsa-website" href="https://slaveryarchive.georgetown.edu/">Georgetown Slavery Archive</a></li>
<li><a id="slavery-website" href="http://slavery.georgetown.edu/">Slavery, Memory, and Reconciliation</a></li>
<li><a id="memory-project" href="http://www.georgetownmemoryproject.org/">Georgetown Memory Project</a></li>
</ul>
<br><br>
<h3>Source Code + Data</h3>
<hr>
<ul class="about-text">
<li><a id="sourcecode" href="https://github.com/sabrinamamamia/gtown-slavery-archive">Source Code</a></li>
<li><a id="data" href="https://github.com/sabrinamamamia/GU272DigitalExploration/tree/master/data">Data</a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Google Analytics script -->
<script type="text/javascript" src="./js/eventTracker.js"></script>
<!-- <script type="text/javascript" src="./js/timelineControls.js"></script> -->
<script type="text/javascript" src="./js/routeMap.js"></script>
<script type="text/javascript" src="./js/pathwaysMap.js"></script>
<script type="text/javascript" src="./js/demographics.js"></script>
<script type="text/javascript" src="./js/familyTree.js"></script>
</body>
</html>
<!--<div class="top-bar">-->
<!--<label>GU272 Visualization</label>-->
<!--<button id="resetButton" style="margin-top: 5px; float: right; margin-right: 20px" type="button" class="btn btn-sm btn-light">Reset Visualization</button>-->
<!--</div>-->
<!--<div class="main-view">-->
<!--<div class="diagram-container">-->
<!--<div id="bundle"></div>-->
<!--</div>-->
<!--<div class="diagram-container-right">-->
<!--<div class="btn-group btn-group-toggle" data-toggle="buttons">-->
<!--<label class="btn btn-sm btn-secondary active">-->
<!--<input type="radio" name="options" id="option1" autocomplete="off" checked> Active-->
<!--</label>-->
<!--<label class="btn btn-sm btn-secondary">-->
<!--<input type="radio" name="options" id="option2" autocomplete="off"> Radio-->
<!--</label>-->
<!--<label class="btn btn-sm btn-secondary">-->
<!--<input type="radio" name="options" id="option3" autocomplete="off"> Radio-->
<!--</label>-->
<!--</div>-->
<!--<label class="label-header">Size:</label>-->
<!--<input style="position:relative;top:3px; margin-bottom: 15px; width: 100%" type="range" min="65" max="100" value="85">-->
<!--<label class="label-header">Filter by family:</label>-->
<!--<div style="display: flex; width: 100%; flex-direction: row">-->
<!--<input id="inputFamily" style="flex-grow: 1" type="text" class="form-control form-control-sm typeahead" data-provide="typeahead">-->
<!--<button id="familyButton" style="flex-shrink: 1; flex-basis: 100px; margin-left: 10px" type="button" class="btn btn-sm btn-primary">Filter</button>-->
<!--</div>-->
<!--<div class="form-check">-->
<!--<input type="checkbox" class="form-check-input" id="exampleCheck1">-->
<!--<label class="form-check-label" id="checkbox">Show enslaved people without buyer data</label>-->
<!--</div>-->
<!--</div>-->
<!--</div>-->