-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmeet.html
490 lines (463 loc) · 26.7 KB
/
meet.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
<!doctype html>
<html class="no-js" lang="en" dir="ltr">
<head>
<title>River Town</title>
<meta charset='utf-8'>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content="Personal Website">
<meta property="og:image" content="img/podcast-logo.png">
<meta property="og:image:width" content="965">
<meta property="og:image:height" content="363">
<meta property="og:title" content="Teddy Maiorca">
<meta property="og:description" content="Personal Website">
<meta property="og:type" content="website">
<meta name="twitter:creator" content="@t.maiorca89">
<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=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap" rel="stylesheet">
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" rel="stylesheet">
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
<style>
body, html {
margin: 0;
padding: 0;
font-family: "Open Sans", sans-serif;
background-color: #354F52;
color: #fff;
}
nav {
background-color: #84A98C;
padding: 20px 0;
text-align: center;
position: sticky;
top: 0;
z-index: 1000;
display: flex;
justify-content: space-between;
align-items: center;
}
.nav-right {
display: flex;
align-items: center;
}
nav a {
text-decoration: none;
color: #FFFF;
margin: 0 15px;
font-size: 20px;
transition: font-size 0.3s, text-decoration 0.3s;
}
nav a:hover {
font-size: 23px;
text-decoration: underline;
color: #fff;
}
nav img.logo {
width: 115px;
margin-right: 10px;
}
@media screen and (max-width: 768px) {
nav a {
font-size: 15px;
margin: 0 7.5px;
}
nav a:hover {
font-size: 17.5px;
}
nav {
justify-content: center;
}
.logo {
display: none;
}
}
h1 {
text-align: center;
padding: 30px 0;
font-size: 35px;
}
h2 {
text-align: center;
padding: 15px 0;
}
h6 {
text-align: center;
padding: 15px 0;
max-width: 750px;
margin: auto;
}
@media screen and (max-width: 768px) {
h6 {
max-width: 400px;
}
}
.card {
display: flex;
flex-direction: column;
height: 100%;
border:#003c41;
color: black;
}
.card-img-top {
height: 300px;
object-fit: cover;
}
.card-body {
flex: 1;
overflow-y: auto;
}
.overflow-auto {
overflow-y: auto;
max-height: 200px;
}
@media screen and (max-width: 1000px) {
.card-img-top {
width: 100%;
height: auto;
}
}
.col-lg-4 {
margin-bottom: 20px;
}
footer {
background-color: #AC542F;
color: #fff;
text-align: center;
padding: 20px 0;
}
</style>
<body>
<nav>
<div>
<a href="index.html"><img class="logo" src="img/RIVER TOWN.png" alt="Logo"></a>
</div>
<div class="nav-right">
<a href="index.html">Home</a>
<a href="about.html">About</a>
<a href="audio.html">Audio</a>
<a href="visuals.html">Visuals</a>
<a href="meet.html">Meet the Team</a>
</div>
</nav>
<h1 style="font-weight: 700">Meet the River Town Team</h1><br>
<h6>River Town is made possible by a devoted team of professional and student journalists at the Missouri School of Journalism. Audio producers from KBIA, staff photojournalists and videographers from the Columbia Missourian worked from August 2023 into May 2024 to document the people and places along the Missouri River. </h6>
<br><br>
<h2>Audio Team</h2>
<br>
<div class="container">
<div class="card-deck">
<div class="col-lg-4">
<div class="card">
<img src="img/tina.jpg" class="card-img-top" alt="...">
<div class="card-body">
<h5 class="card-title">Tina Casagrand Foss</h5>
<p class="card-text">Publisher and The New Territory Magazine executive director</p>
<div class="overflow-auto">
<p class="card-text">Tina Casagrand Foss is the founder, publisher, and editor-in-chief of The New Territory. Raised in the Gasconade River Valley of the northern Ozark border, her love for mossy woods knows no bounds. She graduated from the University of Missouri with degrees in magazine journalism and anthropology and worked as a freelance environmental journalist before starting The New Territory. As executive director of The New Territory Magazine’s newly formed nonprofit, she looks forward to a long future of reaching more readers, fostering Midwestern writers and editors, and nurturing connections among New Territory readers both on and off the page. Tina lives in Jefferson City, Missouri, just a mile away from the Missouri River.</p>
</div>
</div>
</div>
</div>
<div class="col-lg-4">
<div class="card">
<img src="img/abigail.jpeg" class="card-img-top" alt="...">
<div class="card-body">
<h5 class="card-title">Abigail Keel</h5>
<p class="card-text">Editor</p>
<div class="overflow-auto">
<p class="card-text">Abigail is a freelance audio producer and reporter working with clients like At Will Media, The University of Missouri, The Sporkful podcast, and on personal projects. She spent seven years at Stitcher, most recently as a senior producer for Witness Docs. She has been the force behind the scenes making shows like Rubirosa, Toxic: The Britney Spears Story, Unfinished: Short Creek, (named one of the best podcasts of the year by the New Yorker) and All-American: Tiger Woods. Before making serialized documentaries, Abigail produced Unladylike, named one of Spotify’s top podcasts of 2018.</p>
</div>
</div>
</div>
</div>
<div class="col-lg-4">
<div class="card">
<img src="img/janet.jpeg" class="card-img-top" alt="...">
<div class="card-body">
<h5 class="card-title">Janet Saidi</h5>
<p class="card-text">Podcaster, professor</p>
<div class="overflow-auto">
<p class="card-text">Janet Saidi is KBIA’s long-form audio producer and serves on the Missouri School of Journalism’s faculty and graduate faculty. Janet’s many and varied media projects are about building community through audio. She has written and produced pieces for NPR, PBS, the BBC, the Christian Science Monitor, and the Los Angeles Times, and she spent seven years leading KBIA’s award-winning news team. Her most recent projects include KBIA’s podcast Cover Story with Stephanie Shonekan; she hosted KBIA’s live, national-award-winning talk show The Check-In; and she has co-created two award-winning, collaboratively-produced series combining oral history with audio journalism, You Don’t Say and Missouri on Mic. In 2014 and 2016, Janet co-produced two journalism-on-the-stage theater productions with playwright Michelle Tyrene Johnson: Justice in the Embers, with Kansas City’s Living Room Theatre, and The Green Duck Lounge with MU Theatre. Janet began her public-media work at KPBS in San Diego, on a live, nightly talk show called The Lounge. While in California, Janet helped produce the national PBS series “Remaking American Medicine” about healthcare in America, and worked as an editor at the Gay & Lesbian Times and Uptown Newsmagazine. As vice president for news at Kansas City Public Television, Janet led a team of multiplatform journalists to launch KCPT’s digital magazine FlatlandKC, and co-produced the Beyond Belief interfaith journalism project for AIR’s Localore “Finding America” series. Janet lived for several years in England, where she earned her master’s in Literature from University College, London. Her Substack newsletter and podcast is the Austen Connection. Ask her anything you want about Jane!</p>
</div>
</div>
</div>
</div>
<div class="col-lg-4">
<div class="card">
<img src="img/jessica.jpg" class="card-img-top" alt="...">
<div class="card-body">
<h5 class="card-title">Jessica Vaughn Martin</h5>
<p class="card-text">Writer, project manager</p>
<br>
<div class="overflow-auto">
<p class="card-text">Jessica Vaughn Martin is a food journalist and gastronomic enthusiast. Her work centers around the people involved in food and agriculture, and the idea of food as memory, tradition, and cultural roadmap. She is a co-founder of Leftovers Community, an emerging food media platform that celebrates and sees potential in the scraps of life: leftover food, overlooked places and unheard voices. Jessica is an alumna of the Missouri School of Journalism and a former contributing editor for Feast magazine; she has also contributed to Food Network, Farm Journal, and COMO magazine, among other publications. Most recently, she’s taken a dive into audio, managing the Canned Peaches and River Town podcasts for mid-Missouri’s local NPR affiliate, KBIA. She lives in Jefferson City, Missouri, with her young family in an old bungalow, where she’s running out of space for her growing collection of vintage Missouri cookbooks.</p>
</div>
</div>
</div>
</div>
<div class="col-lg-4">
<div class="card">
<img src="img/tadeo.jpg" class="card-img-top" alt="...">
<div class="card-body">
<h5 class="card-title">Tadeo Ruiz Sandoval</h5>
<p class="card-text">Student producer, newcomer to the river, traveling journalist</p>
<div class="overflow-auto">
<p class="card-text">Tadeo Ruiz Sandoval currently studies journalism at the University of Missouri. He hails from Mexico City, but the adventure flowing within him has taken him across states, countries and continents. Journalism and travel have become a way of beind for Tadeo. Coffee, books and friends he's made along the way made him realize that a real home can be anywhere.</p>
</div>
</div>
</div>
</div>
<div class="col-lg-4">
<div class="card">
<img src="img/RiverTownLogoNew.png" class="card-img-top" alt="...">
<div class="card-body">
<h5 class="card-title">Olivia Mizelle</h5>
<p class="card-text">Student producer, multimedia journalis</p>
<div class="overflow-auto">
<p class="card-text">Olivia Mizelle is a junior at the University of Missouri studying journalism with a minor in Spanish. Her passions lie in long-form audio producing and multimedia editing. As a Wisconsin native, she is more familiar with lakes than rivers, but this project helped her discover a new body of water and the stories that lie within it.</p>
</div>
</div>
</div>
</div>
<div class="col-lg-4">
<div class="card">
<img src="img/RiverTownLogoNew.png" class="card-img-top" alt="...">
<div class="card-body">
<h5 class="card-title">Ellie Lin</h5>
<p class="card-text">Student producer, public radio enthusiast</p>
<div class="overflow-auto">
<p class="card-text">Ellie Lin is a senior at the University of Missouri studying journalism and pursuing a certificate in media technology and design. In addition to being a lifelong public radio nerd, she enjoys data visualization and motion graphics. Originally from St. Paul, Minnesota, her heart belongs to The Mississippi River but through River Town she has grown to love the Big Muddy almost as much. </p>
</div>
</div>
</div>
</div>
<div class="col-lg-4">
<div class="card">
<img src="img/RiverTownLogoNew.png" class="card-img-top" alt="...">
<div class="card-body">
<h5 class="card-title">Kiana Fernandes</h5>
<p class="card-text">Student producer, classical music enthusiast</p>
<div class="overflow-auto">
<p class="card-text">Kiana Fernandes is a senior journalism student at the University of Missouri in Columbia. She prefers reporting on arts and culture, with an emphasis on classical music. She was drawn to radio because of its connection to humanity's history of oral storytelling and the power the spoken word can have. Fernandes hopes to work with an NPR affiliate station as an arts editor and/or reporter.</p>
</div>
</div>
</div>
</div>
<div class="col-lg-4">
<div class="card">
<img src="img/RiverTownLogoNew.png" class="card-img-top" alt="...">
<div class="card-body">
<h5 class="card-title">Kaylin Hellyer</h5>
<p class="card-text">Student producer, multimedia journalist</p>
<div class="overflow-auto">
<p class="card-text">Kaylin Hellyer is a graduating senior at the University of Missouri. She started her college journalism experience with an interest in TV news production but was quickly captivated by public radio. She also has a passion for learning about ancient civilizations and is graduating with a minor in history. Kaylin thoroughly enjoyed putting her major and minor to use by learning a bit about the history of the Missouri River and by getting to explore the people and communities around it.</p>
</div>
</div>
</div>
</div>
<div class="col-lg-4">
<div class="card">
<img src="img/RiverTownLogoNew.png" class="card-img-top" alt="...">
<div class="card-body">
<h5 class="card-title">Ailing Li</h5>
<p class="card-text">Student producer</p>
<div class="overflow-auto">
<p class="card-text"></p>
</div>
</div>
</div>
</div>
</div>
</div>
<br><br>
<h2>Visuals Team</h2>
<br>
<div class="container">
<div class="card-deck">
<div class="col-lg-4">
<div class="card">
<img src="img/caroline.jpeg" class="card-img-top" alt="...">
<div class="card-body">
<h5 class="card-title">Caroline McCone</h5>
<p class="card-text"></p>
<div class="overflow-auto">
<p class="card-text">Caroline McCone is a visual storyteller and photo editor based in Columbia, Mo. She is currently an Assistant Director of Photography at the Columbia Missourian. She received her bachelor’s degrees in Journalism and International Studies from the University of Kansas but decided to continue her academic journey in graduate school at the Missouri School of Journalism. Born and raised in Northwest Arkansas, she is no stranger to the river lifestyle and the community the waters can create. </p>
</div>
</div>
</div>
</div>
<div class="col-lg-4">
<div class="card">
<img src="img/Vanina.jpg" class="card-img-top" alt="...">
<div class="card-body">
<h5 class="card-title">Vanina Dimitrova</h5>
<p class="card-text"></p>
<div class="overflow-auto">
<p class="card-text">Vanina is an undergraduate senior at the University of Missouri and a staff photographer at the Columbia Missourian. In her semester at the Missourian, she’s worked on a variety of different stories but has found herself falling in love with sports photography. Outside of their journalistic work, I specialize in equine photography and equine portraiture.</p>
</div>
</div>
</div>
</div>
<div class="col-lg-4">
<div class="card">
<img src="img/Ellie.jpeg" class="card-img-top" alt="...">
<div class="card-body">
<h5 class="card-title">Ellie Frysztak</h5>
<p class="card-text"></p>
<div class="overflow-auto">
<p class="card-text">Ellie is a former Public Defender Investigator back at school to get her master’s degree in photojournalism. She is a staff photographer for the Columbia Missourian, working on news stories, sports, and everything in between. Ellie has worked on the Pictures of the Year and the College Photographer of the Year photo competitions in addition to her studies. Her dream after graduation is to be a public radio photojournalist!</p>
</div>
</div>
</div>
</div>
<div class="col-lg-4">
<div class="card">
<img src="img/Elena.jpg" class="card-img-top" alt="...">
<div class="card-body">
<h5 class="card-title">Elena Fu</h5>
<p class="card-text"></p>
<div class="overflow-auto">
<p class="card-text">Elena is a graduate student at the University of Missouri. Her focus is photojournalism and documentary.</p>
</div>
</div>
</div>
</div>
<div class="col-lg-4">
<div class="card">
<img src="img/Ashlee.jpeg" class="card-img-top" alt="...">
<div class="card-body">
<h5 class="card-title">Ashlee Klotzbuecher</h5>
<p class="card-text"></p>
<div class="overflow-auto">
<p class="card-text">Ashlee Klotzbuecher is an undergraduate student pursuing a bachelor’s degree in journalism with an emphasis in photography. She is currently a staff photographer with the Columbia Missourian. She enjoys nature and wildlife photography and intends to pursue these after graduation as passion projects. Along with these, she enjoys capturing moments in everyday life whether it be someone who loves to listen for bird calls or has run a forge for 20+ years. </p>
</div>
</div>
</div>
</div>
<div class="col-lg-4">
<div class="card">
<img src="img/carolineL.JPEG" class="card-img-top" alt="...">
<div class="card-body">
<h5 class="card-title">Caroline Larson</h5>
<p class="card-text"></p>
<div class="overflow-auto">
<p class="card-text">Caroline Larson is an undergraduate pursuing a bachelor’s degree in photojournalism and documentary at the University of Missouri. In her career, she has worked with The Maneater and The Columbia Missourian, working on different stories. She absolutely loves taking sports photography and documentary-style photography. Outside of her journalistic work, she also loves photo and video editing.
</p>
</div>
</div>
</div>
</div>
<div class="col-lg-4">
<div class="card">
<img src="img/JJ.jpg" class="card-img-top" alt="...">
<div class="card-body">
<h5 class="card-title">JJ Measer</h5>
<p class="card-text"></p>
<div class="overflow-auto">
<p class="card-text">Jj Measer is a Documentary Journalism student at the Murray Center for Documentary Journalism at the University of Missouri. Previously a cinematographer and editor for Mizzou Athletics and currently the Cinematic B-Roll Cinematographer for the Mizzou XTra show on KOMU 8 News. Measer’s past work includes documentary editing: “The Tattooed Truck of Nepal” directed by Ron Ranson, Director of Photography: “Mind Alchemy” directed by Devon Bidjou and Director of Photography: “Concepto de Ciudadano” directed by Sharon Quintana Ortiz.</p>
</div>
</div>
</div>
</div>
<div class="col-lg-4">
<div class="card">
<img src="img/Halle.jpg" class="card-img-top" alt="...">
<div class="card-body">
<h5 class="card-title">Halle Paulus</h5>
<p class="card-text"></p>
<div class="overflow-auto">
<p class="card-text">Halle is a student at the Missouri School of Journalism studying to become a visual journalist. As a staff photographer for the Columbia Missourian, she enjoys capturing stories using a documentarian approach, making mere moments last a lifetime. Post-graduation, Halle plans to use her background in journalism to tell stories of goodwill and share the voices of many.</p>
</div>
</div>
</div>
</div>
<div class="col-lg-4">
<div class="card">
<img src="img/Elise.jpg" class="card-img-top" alt="...">
<div class="card-body">
<h5 class="card-title">Elise Wilke-Grimm</h5>
<p class="card-text"></p>
<div class="overflow-auto">
<p class="card-text">Elise is a journalism student studying documentary journalism in particular. She has spent her time in school working either with the Columbia Missourian or doing independent work, like with The New Territory Magazine. This River Town project has been very fun and fascinating for Elise, working with Kathy Borgman for these past couple of months has given her another grandmother. Elise and Kathy normally chatted about how much Kathy enjoys living in such a small town, and how much her bed and breakfast is affected by the waves of tourism that come through seasonally.</p>
</div>
</div>
</div>
</div>
<div class="col-lg-4">
<div class="card">
<img src="img/RiverTownLogoNew.png" class="card-img-top" alt="...">
<div class="card-body">
<h5 class="card-title">Joe Feduccia</h5>
<p class="card-text"></p>
<div class="overflow-auto">
<p class="card-text"></p>
</div>
</div>
</div>
</div>
<div class="col-lg-4">
<div class="card">
<img src="img/RiverTownLogoNew.png" class="card-img-top" alt="...">
<div class="card-body">
<h5 class="card-title">Nick Ginter</h5>
<p class="card-text"></p>
<div class="overflow-auto">
<p class="card-text"></p>
</div>
</div>
</div>
</div>
<div class="col-lg-4">
<div class="card">
<img src="img/RiverTownLogoNew.png" class="card-img-top" alt="...">
<div class="card-body">
<h5 class="card-title">Jacob Luebbert</h5>
<p class="card-text"></p>
<div class="overflow-auto">
<p class="card-text"></p>
</div>
</div>
</div>
</div>
<div class="col-lg-4">
<div class="card">
<img src="img/RiverTownLogoNew.png" class="card-img-top" alt="...">
<div class="card-body">
<h5 class="card-title">Jamie Maron</h5>
<p class="card-text"></p>
<div class="overflow-auto">
<p class="card-text"></p>
</div>
</div>
</div>
</div>
<div class="col-lg-4">
<div class="card">
<img src="img/RiverTownLogoNew.png" class="card-img-top" alt="...">
<div class="card-body">
<h5 class="card-title">Austin Johnson</h5>
<p class="card-text"></p>
<div class="overflow-auto">
<p class="card-text"></p>
</div>
</div>
</div>
</div>
<div class="col-lg-4">
<div class="card">
<img src="img/RiverTownLogoNew.png" class="card-img-top" alt="...">
<div class="card-body">
<h5 class="card-title">Anastasia Busby</h5>
<p class="card-text"></p>
<div class="overflow-auto">
<p class="card-text"></p>
</div>
</div>
</div>
</div>
</div>
</div>
<footer>
© 2024 Columbia Missourian. All rights reserved.
</footer>
</body>