-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
753 lines (692 loc) · 38.2 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
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]> <html class="no-js"> <![endif]-->
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Katy Börner</title>
<meta name="description"
content="Indiana University Professor specializing in scientometrics, informetrics, science of science studies, network science, cyberinfrastructure">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="https://cdn.jsdelivr.net/gh/vanillawc/wc-markdown@1/index.js" type="module"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link
href="https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@700&family=Lato:wght@300;400;700&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="css/bootstrap.min.css">
<style>
body * {
font-family: 'Lato', sans-serif;
}
a,
a:visited,
a:link {
color: #00abff;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
/* Nav */
.navbar {
max-height: 64px;
}
.bg-dark {
background-color: #000007 !important;
}
.navbar-brand .logo {
margin-top: -8px;
height: 1.5rem;
}
.navbar .btn {
background: transparent;
color: #ffffff;
}
.navbar-expand-lg .navbar-nav .nav-link {
padding-left: 1rem;
padding-right: 1rem;
}
.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link:hover {
color: rgba(255, 255, 255, 1);
}
@media screen and (min-width: 992px) {
.navbar .btn-contact {
display: inline-block;
font-weight: 400;
line-height: 1.5;
text-align: center;
vertical-align: middle;
cursor: pointer;
user-select: none;
border: 1px solid #ffffff;
padding: .375rem .75rem;
font-size: 1rem;
border-radius: .25rem;
transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
color: #ffffff !important;
}
.navbar .btn-contact:hover {
background: #ffffff !important;
color: #000007 !important;
}
.nav-link,
.dropdown-item {
font-size: 1.125rem !important;
}
}
/* Main */
.main-container {
max-width: 960px;
margin: 0 auto;
}
.h2 {
padding-bottom: .5rem;
margin-bottom: 1rem;
border-bottom: 1px solid #757575;
}
.img-max {
max-width: 15rem;
}
.img-thumbnail {
border-radius: 0;
padding: 0.25rem;
border-color: #e0e0e0;
}
.publications {
height: 230px !important;
}
.shadow-sm:hover {
box-shadow: 0 .5rem .75rem rgba(0, 0, 0, 0.5) !important;
}
.logo-pas {
max-width: 5rem;
}
.no-decoration {
text-decoration: none !important;
}
#art-design .card * {
text-decoration: none !important;
color: #424242;
}
.card-reverse .icon {
max-width: 4rem;
}
.card-reverse .text-color {
color: #ffffff;
}
/* Aside */
.aside-links .btn {
width: 100%;
text-align: left;
border-bottom: 1px solid #e0e0e0;
padding: .75rem 1rem;
border-radius: 0;
}
.aside-links a {
color: #424242;
}
.aside-links .btn:hover {
background-color: #000007;
color: #ffffff;
transition: background-color 0.7s ease;
}
#art-design-section .card-body {
color: #424242;
}
/* Footer */
.main-footer {
margin-top: 4rem;
border-top: 1px solid #e0e0e0;
}
.footer-content {
padding-top: .5rem;
padding-left: 1.5rem;
}
.hero {
padding-top: 3.5rem;
position: relative;
}
.hero .hero-img {
height: auto;
}
.text-hero {
font-family: 'Cormorant Garamond', serif;
position: absolute;
top: 0;
margin-top: 30%;
padding-right: 5%;
margin-bottom: auto;
margin-left: 58%;
font-size: 1.5rem;
line-height: 1em;
color: #ffffff;
text-shadow: 2px 3px 4px #000007;
z-index: 50;
display: block;
}
@media screen and (min-width: 480px) {
.text-hero {
margin-top: 20%;
font-size: 2.5rem;
}
}
@media screen and (min-width: 640px) {
.text-hero {
margin-top: 20%;
font-size: 3rem;
}
}
@media screen and (min-width: 992px) {
.hero {
background-image: url("img/hero-katy.jpg");
height: calc(100vh);
background-position: center;
background-repeat: no-repeat;
background-size: cover;
min-height: 450px;
}
.text-hero {
font-family: 'Cormorant Garamond', serif;
margin-top: 0;
margin-left: 58%;
margin-right: 5%;
font-size: calc(16px + 48 * ((100vw - 320px) / 680));
line-height: 1em;
color: #ffffff;
text-shadow: 2px 3px 4px #000007;
z-index: 50;
display: block;
padding-top: 30vh;
}
.scroll-group>.row2 {
white-space: pre-wrap;
display: flex;
}
}
.anchor {
top: -64px;
position: relative;
display: block;
}
.navbar .dropdown {
margin: 0;
padding: 0;
position: unset;
}
.navbar>.container-fluid {
justify-content: flex-end;
position: relative;
}
.navbar .navbar-brand {
position: absolute;
top: 0;
left: 1rem;
}
.navbar .dropdown-menu {
width: 100%;
border-radius: 0;
box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
.navbar .dropdown-menu a {
padding-top: .5rem;
padding-bottom: .5rem;
color: #424242;
border-bottom: 1px solid #e0e0e0;
}
.navbar .dropdown-menu a:hover {
text-decoration: none;
background-color: #000007;
color: #ffffff;
}
.navbar .dropdown-toggle {
color: rgba(255, 255, 255, .55);
text-decoration: none;
}
.navbar .dropdown-toggle:hover,
.navbar .show:hover {
color: rgba(255, 255, 255, 1);
}
/* scroll section */
.scroll-group>.row2 {
overflow: scroll;
/* Show scrollbars */
white-space: nowrap;
}
.scroll-group>.row2>.col-xs-4 {
display: inline-block;
float: none;
margin-right: 25px;
}
</style>
</head>
<body>
<div class="wrapper">
<div class="hero"><img src="img/hero-katy.jpg" class="d-lg-none w-100 hero-img"><span class="text-hero">Anyone
can learn to map data!</span></div>
<nav class="navbar navbar-expand-lg navbar-dark bg-dark fixed-top">
<div class="container-fluid px-3 bg-dark">
<a class="navbar-brand" href="#"><img src="img/logo-katy-borner.svg" alt="Logo: Katy Borner"
class="logo"></a>
<!-- <div style="width: 40px; height: 40px; background: red;"></div> -->
<div></div>
<ul class="dropdown d-md-none">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button"
data-bs-toggle="dropdown" aria-expanded="false">
Links
</a>
<ul class="dropdown-menu" aria-labelledby="navbarDropdown">
<li><a class="dropdown-item" href="cv.html"
target="_blank">CV</a></li>
<li><a class="dropdown-item" href="http://scholar.google.com/citations?user=YirSp_cAAAAJ&hl=en"
target="_blank">Google Scholar</a></li>
<li><a class="dropdown-item" href="https://cns.iu.edu/publications"
target="_blank">Publications</a></li>
<li><a class="dropdown-item" href="https://cns.iu.edu/presentations.html"
target="_blank">Presentations</a></li>
<li><a class="dropdown-item" href="https://orcid.org/0000-0002-3321-6137"
target="_blank">ORCID</a></li>
<li><a class="dropdown-item" href="https://www.scopus.com/authid/detail.uri?authorId=7006188708"
target="_blank">Scopus ID</a></li>
<li><a class="dropdown-item" href="https://cns.iu.edu/courses.html" target="_blank">Courses</a>
</li>
<li><a class="dropdown-item" href="https://cns.iu.edu/workshops.html"
target="_blank">Workshops</a></li>
<li><a class="dropdown-item" href="https://scimaps.org" target="_blank">Mapping Science
Exhibit</a></li>
<li><a class="dropdown-item" href="https://socialblade.com/youtube/user/cnscenter"
target="_blank">CNS YouTube Channel</a></li>
</ul>
</ul>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse"
data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent"
aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse justify-content-end" id="navbarSupportedContent">
<ul class="navbar-nav mb-2 mb-lg-0 me-3 navbar-nav-scroll">
<li class="nav-item">
<a class="nav-link no-decoration" href="#about">About</a>
</li>
<li class="nav-item">
<a class="nav-link no-decoration" href="#research">Research</a>
</li>
<li class="nav-item">
<a class="nav-link no-decoration" href="#art-design">Art & Design</a>
</li>
<li class="nav-item">
<a class="nav-link no-decoration" href="#teaching">Teaching</a>
</li>
<li class="nav-item me-2">
<a class="nav-link no-decoration" href="#service">Service</a>
</li>
<li class="nav-item">
<a class="nav-link btn-contact no-decoration" href="#contact">Contact</a>
</li>
</ul>
</div>
</div>
</nav>
<main class="main-container container-fluid">
<div class="row gx-4">
<div class="col col-md-8">
<a class="anchor" id="about"></a>
<section id="about-section" class="pt-4 pt-lg-5">
<h2 class="h2">About</h2>
<img class="img-fluid img-thumbnail mb-4 d-block d-sm-none" src="img/img-about-sm.jpg"
alt="Katy Borner holding a giant world">
<img class="float-end img-fluid img-thumbnail img-max ms-4 mb-4 d-none d-sm-block"
src="img/img-about.jpg" alt="Katy Borner holding a giant world">
<wc-markdown src="content/about/readme.md" class="main"></wc-markdown>
</section>
<a class="anchor" id="research"></a>
<section id="research-section" class="pt-4">
<h2 class="h2">Research</h2>
<img class="img-fluid img-thumbnail mb-4 d-block d-sm-none" src="img/img-research-sm.jpg"
alt="Katy Borner holding a giant world">
<img class="float-end img-fluid img-thumbnail img-max ms-4 mb-4 d-none d-sm-block"
src="img/img-research.jpg" alt="Katy Borner holding a giant world">
<wc-markdown src="content/research/readme.md" class="main"></wc-markdown>
<div class="bg-light p-3 mt-2">
<h3 class="h5 text-uppercase">Recent Publications</h3>
<div class="row">
<div class="col-12 col-sm-4 pt-3">
<a href="https://www.nature.com/ncb/volumes/25/issues/8#:~:text=Spatial%20atlas%20of%20the%20human,See%20Jain%20et%20al."
title="Nature | Spatial Atlas of the Human Body" class="shadow-sm d-block" target="_blank"><img
class="img-fluid img-thumbnail w-100 publications2"
src="img/2023-Cover-nature.png"
alt="Cover of Nature, Spatial Atlas of the Human Body edition"></a>
</div>
<div class="col-12 col-sm-4 pt-3">
<a href="https://www.nature.com/immersive/d42859-023-00019-y"
title="Nature | Body Image" class="shadow-sm d-block" target="_blank"><img
class="img-fluid img-thumbnail w-100 publications2"
src="img/img-nature-body-image.png"
alt="Cover of Nature, Body Image edition"></a>
</div>
<div class="col-12 col-sm-4 pt-3">
<a href="https://www.nature.com/articles/s41556-021-00788-6"
title="Nature cell biology | Focus on mapping the cells of teh body"
class="shadow-sm d-block" target="_blank"><img
class="img-fluid img-thumbnail w-100 publications2"
src="img/2021-Cover-nature.png"
alt="Nature cell biology | Focus on mapping the cells of teh body cover"></a>
</div>
<div class="col-12 col-sm-4 pt-3">
<a href="https://www.pnas.org/content/115/50/12630"
title="PNAS | Skill discrepancies between research, education, and jobs reveal the critical need to supply soft skills for the data economy"
class="shadow-sm d-block" target="_blank"><img
class="img-fluid img-thumbnail w-100 publications2" src="img/img-pnas4.jpg"
alt="Page from PNAS article"></a>
</div>
<div class="col-12 col-sm-4 pt-3">
<a href="https://www.pnas.org/modeling"
title="PNAS | Modeling and Visualizing Science and Technology Developments"
class="shadow-sm d-block" target="_blank"><img
class="img-fluid img-thumbnail w-100 publications2" src="img/img-pnas2.jpg"
alt="Cover of PNAS"></a>
</div>
<div class="col-12 col-sm-4 pt-3">
<a href="https://www.pnas.org/content/116/6/1857"
title="PNAS | Data visualization literacy: Definitions, conceptual frameworks, exercises, and assessments"
class="shadow-sm d-block" target="_blank"><img
class="img-fluid img-thumbnail w-100 publications2" src="img/img-pnas3.jpg"
alt="Page from PNAS article"></a>
</div>
<div class="col-12 col-sm-4 pt-3">
<a href="https://katy.luddy.indiana.edu/research/polis-cover-large.pdf"
title="Polis | Exploring Spaces" class="shadow-sm d-block" target="_blank"><img
class="img-fluid img-thumbnail w-100 publications2"
src="img/2010-cover-polis.jpg" alt="Cover of Polis, Exploring Spaces"></a>
</div>
<div class="col-12 col-sm-4 pt-3">
<a href="https://upload.wikimedia.org/wikipedia/commons/2/26/WMF_20072008_Annual_report._high_resolution.pdf"
title="Wikimedia Foundation | 2007/8 Annual Report" class="shadow-sm d-block"
target="_blank"><img class="img-fluid img-thumbnail w-100 publications2"
src="img/2008-cover-wikimedia.jpg"
alt="Cover Wikimedia Foundation 2007/8 Annual Report"></a>
</div>
<div class="col-12 col-sm-4 pt-3">
<a href="https://issues.org/wp-content/uploads/2019/07/2011-Spring-cover.jpg"
title="Issues | The Energy/Climate Complex" class="shadow-sm d-block"
target="_blank"><img class="img-fluid img-thumbnail w-100 publications2"
src="img/2011-Cover-Issues.jpeg"
alt="Cover of Issues, The Energy/Climate Complex"></a>
</div>
<div class="col-12 col-sm-4 pt-3">
<a href="https://nap.nationalacademies.org/catalog/11516/network-science"
title="Complexity cover" class="shadow-sm d-block" target="_blank"><img
class="img-fluid img-thumbnail w-100 publications2"
src="img/2005-Cover-Network-Science.jpeg" alt="Network Science Cover"></a>
</div>
<div class="col-12 col-sm-4 pt-3">
<a href=" https://onlinelibrary.wiley.com/doi/10.1002/cplx.20164"
title="Complexity cover" class="shadow-sm d-block" target="_blank"><img
class="img-fluid img-thumbnail w-100 publications2"
src="img/2007-cover-complexity.jpeg" alt="Complexity cover"></a>
</div>
<div class="col-12 col-sm-4 pt-3">
<a href="https://www.pnas.org/content/101/suppl_1"
title="PNAS | Mapping Knowledge Domains" class="shadow-sm d-block"
target="_blank"><img class="img-fluid img-thumbnail w-100 publications2"
src="img/2004-Cover-PNAS.png" alt="Cover of PNAS"></a>
</div>
</div>
</div>
<div class="bg-light p-3 mt-2">
<h3 class="h5 text-uppercase">Books</h3>
<div class="row">
<div class="col-12 col-sm-4 pt-3">
<a href="https://www.amazon.com/Atlas-Forecasts-Modeling-Mapping-Desirable/dp/0262045958/ref=sr_1_1?dchild=1&keywords=borner+atlas+forecast&qid=1620409272&s=books&sr=1-1"
title="Get Atlas of Forecasts on Amazon" class="shadow-sm d-block"
target="_blank"><img class="img-fluid img-thumbnail w-100"
src="img/img-atlas-forecasts.jpg" alt="Book Cover: Atlas of Forecasts"></a>
</div>
<div class="col-12 col-sm-4 pt-3">
<a href="https://www.amazon.com/Atlas-Knowledge-Anyone-Can-Press/dp/0262028816/ref=sr_1_1?dchild=1&keywords=borner+atlas+knowledge&qid=1620409346&s=books&sr=1-1"
title="Get Atlas of Knowledge on Amazon" class="shadow-sm d-block"
target="_blank"><img class="img-fluid img-thumbnail w-100"
src="img/img-atlas-knowledge.jpg" alt="Book Cover: Atlas of Knowledge"></a>
</div>
<div class="col-12 col-sm-4 pt-3">
<a href="https://www.amazon.com/Atlas-Science-Visualizing-What-Press/dp/0262014459/ref=sr_1_1?dchild=1&keywords=borner+atlas+science&qid=1620409324&s=books&sr=1-1"
title="Get Atlas of Science on Amazon" class="shadow-sm d-block"
target="_blank"><img class="img-fluid img-thumbnail w-100"
src="img/img-atlas-science.jpg" alt="Book Cover: Atlas of Science"></a>
</div>
</div>
</div>
</section>
<a class="anchor" id="art-design"></a>
<section id="art-design-section" class="pt-4 pt-lg-5">
<h2 class="h2">Art & Design</h2>
<wc-markdown src="content/art-design/readme.md" class="main"></wc-markdown>
<div class="bg-light p-3 mt-2">
<div class="row">
<div class="col-12 col-sm-4 pt-3">
<a href="https://www.youtube.com/watch?v=zQeMgxo8n_U" title="Human Reference Atlas: Vasculature Common Coordinate Framework video"
target="_blank" class="no-decoration">
<div class="card h-100 shadow-sm">
<img src="img/img-HRA.png" class="card-img-top p-1"
alt="Human Reference Atlas: Vasculature Common Coordinate Framework">
<div class="card-body">
<h5 class="h6">Human Reference Atlas: VCCF</h5>
</div>
</div>
</a>
</div>
<div class="col-12 col-sm-4 pt-3">
<a href="https://scimaps.org" title="SciMaps: Places & Spaces exhibit"
target="_blank" class="no-decoration">
<div class="card h-100 shadow-sm">
<img src="img/macroscopes/image.sm.jpg" class="card-img-top p-1"
alt="Image of Nature 150 macroscope">
<div class="card-body">
<h5 class="h6">Macroscopes</h5>
</div>
</div>
</a>
</div>
<div class="col-12 col-sm-4 pt-3">
<a href="https://scimaps.org/hosting/learning-material/humanexus"
title="SciMaps: Humanexus movie" target="_blank" class="no-decoration">
<div class="card h-100 shadow-sm">
<img src="img/humanexus/image.sm.jpg" class="card-img-top p-1"
alt="Image of Humanexus movie poster">
<div class="card-body">
<h5 class="h6">Humanexus</h5>
</div>
</div>
</a>
</div>
<div class="col-12 col-sm-4 pt-3">
<a href="https://scimaps.org/hosting/learning-material/worldprocessor-globes"
title="SciMaps: WorldProcessor Globes details" target="_blank"
class="no-decoration">
<div class="card h-100 shadow-sm">
<img src="img/worldprocessor_globes/image.sm.jpg" class="card-img-top p-1"
alt="Image of WorldProcessor Globe">
<div class="card-body">
<h5 class="h6">WorldProcessor Globes</h5>
</div>
</div>
</a>
</div>
<div class="col-12 col-sm-4 pt-3">
<a href="https://youtu.be/hSlYtTcehSI" title="Carrie Longley interview"
target="_blank" class="no-decoration">
<div class="card h-100 shadow-sm">
<img src="img/sculptures_of_science/image.sm.jpg" class="card-img-top p-1"
alt="Shape of Science Sculpture">
<div class="card-body">
<h5 class="h6">Shape of Science Sculpture</h5>
</div>
</div>
</a>
</div>
<div class="col-12 col-sm-4 pt-3">
<a href="img/comic_book/comicbook_web.pdf" title="Download comic book"
target="_blank" class="no-decoration">
<div class="card h-100 shadow-sm">
<img src="img/comic_book/image.sm.jpg" class="card-img-top p-1"
alt="Image of Adventures in Knowledge Land comic">
<div class="card-body">
<h5 class="h6">Adventures in Knowledge Land</h5>
</div>
</div>
</a>
</div>
<div class="col-12 col-sm-4 pt-3">
<a href="https://scimaps.org/hosting/learning-material/science-maps-for-kids"
title="SciMaps: Science Maps for Kids" target="_blank" class="no-decoration">
<div class="card h-100 shadow-sm">
<img src="img/kids_puzzle/image.sm.jpg" class="card-img-top p-1"
alt="Science Maps for Kids">
<div class="card-body">
<h5 class="h6">Science Maps for Kids</h5>
</div>
</div>
</a>
</div>
<div class="col-12 col-sm-4 pt-3">
<a href="https://cns.iu.edu/amatria.html " title="Amatria: Sentient Architecture"
target="_blank" class="no-decoration">
<div class="card h-100 shadow-sm">
<img src="img/amatria/amatria-unveiling.jpg" class="card-img-top p-1"
alt="Amatria: Sentient Architecture">
<div class="card-body">
<h5 class="h6">Amatria: Sentient Architecture</h5>
</div>
</div>
</a>
</div>
</div>
</div>
</section>
<a class="anchor" id="teaching"></a>
<section id="teaching-section" class="pt-4 pt-lg-5">
<h2 class="h2">Teaching</h2>
<img class="img-fluid img-thumbnail mb-4 d-block d-sm-none" src="img/img-teaching-sm.jpg"
alt="KKaty Borner instructing a class">
<img class="float-end img-fluid img-thumbnail img-max ms-4 mb-4 d-none d-sm-block"
src="img/img-teaching.jpg" alt="Katy Borner instructing a class">
<wc-markdown src="content/teaching/readme.md" class="main"></wc-markdown>
</section>
<a class="anchor" id="service"></a>
<section id="service-section" class="pt-4 pt-lg-5">
<h2 class="h2">Service</h2>
<wc-markdown src="content/service/readme.md" class="main"></wc-markdown>
</section>
<a class="anchor" id="contact"></a>
<section id="contact-section" class="pt-4 pt-lg-5">
<h2 class="h2">Contact</h2>
<div class="p-3 mt-2">
<div class="row">
<div class="col-12 col-sm-6 col-lg-4 pt-3">
<a href="mailto:katy@iu.edu" title="Email Katy Borner" class="no-decoration">
<div class="card bg-dark card-reverse shadow-sm text-center h-100">
<img src="img/ico-email-gry.svg" class="card-img-top mx-auto mt-2 icon"
alt="Email icon">
<div class="card-body">
<p class="card-text"><span class="text-color d-block">Email Katy</span>
katy@iu.edu</p>
</div>
</div>
</a>
</div>
<div class="col-12 col-sm-6 col-lg-4 pt-3">
<a href="mailto:cnscntr@iu.edu" title="Email CNS Assistant"
class="no-decoration">
<div class="card bg-dark card-reverse shadow-sm text-center h-100">
<img src="img/ico-email-gry.svg" class="card-img-top mx-auto mt-2 icon"
alt="Email icon">
<div class="card-body">
<p class="card-text"><span class="text-color d-block">Email
CNS Assistant</span>
cnscntr@iu.edu</p>
</div>
</div>
</a>
</div>
<div class="col-12 col-sm-6 col-lg-4 pt-3">
<a href="http://scholar.google.com/citations?user=YirSp_cAAAAJ&hl=en"
title="Katy Borner on Google Scholar" class="no-decoration" target="_blank">
<div class="card bg-dark card-reverse shadow-sm text-center h-100">
<img src="img/logo-google-scholar-gry.svg"
class="card-img-top mx-auto mt-2 icon" alt="Email icon">
<div class="card-body">
<p class="card-text"><span class="text-color">Google
Scholar</span> </p>
</div>
</div>
</a>
</div>
</div>
</div>
</section>
</div>
<aside class="col-md-4 aside-links d-none d-md-block pt-4 pt-lg-5 mt-2">
<h3 class="h4 mb-3">QuickLinks</h3>
<div>
<ul class="list-unstyled">
<li class="list-item"><a class="btn no-decoration" role="button"
href="cv.html" target="_blank">CV</a></li>
<li class="list-item"><a class="btn no-decoration"
href="http://scholar.google.com/citations?user=YirSp_cAAAAJ&hl=en"
target="_blank">Google Scholar</a></li>
<li class="list-item"><a class="btn no-decoration" href="https://cns.iu.edu/publications"
target="_blank">Publications</a></li>
<li class="list-item"><a class="btn no-decoration"
href="https://cns.iu.edu/presentations.html" target="_blank">Presentations</a></li>
<li class="list-item"><a class="btn no-decoration"
href="https://orcid.org/0000-0002-3321-6137" target="_blank">ORCID</a></li>
<li class="list-item"><a class="btn no-decoration"
href="https://www.scopus.com/authid/detail.uri?authorId=7006188708" target="_blank">Scopus ID
</a></li>
<li class="list-item"><a class="btn no-decoration" href="https://cns.iu.edu/courses.html"
target="_blank">Courses</a></li>
<li class="list-item"><a class="btn no-decoration" href="https://cns.iu.edu/workshops.html"
target="_blank">Workshops</a></li>
<li class="list-item"><a class="btn no-decoration" href="https://scimaps.org"
target="_blank">Mapping
Science Exhibit</a></li>
<li class="list-item"><a class="btn no-decoration" href="https://cns.iu.edu/videos.html"
target="_blank">CNS Videos</a></li>
</ul>
</div>
</aside>
</div>
</main>
<footer class="main-footer">
<p class="footer-content"><small>©
<script>
new Date().getFullYear() > 2010 && document.write(new Date().getFullYear());
</script> All Rights
Reserved.
</small></p>
</footer>
</div>
<script src="js/bootstrap.bundle.min.js" async defer></script>
<script>
var box = $(".box-inner"), x;
$(".arrow").click(function () {
if ($(this).hasClass("arrow-right")) {
x = ((box.width() / 2)) + box.scrollLeft();
box.animate({
scrollLeft: x,
})
} else {
x = ((box.width() / 2)) - box.scrollLeft();
box.animate({
scrollLeft: -x,
})
}
})
</script>
</body>
</html>