-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·1018 lines (931 loc) · 46.9 KB
/
index.html
File metadata and controls
executable file
·1018 lines (931 loc) · 46.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
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">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<title>Avery & Stephen Are Getting Married!</title>
<link rel="shortcut icon" href="assets/images/favicon.png">
<!-- Bootstrap -->
<link href="http://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.no-icons.min.css" rel="stylesheet">
<!-- Icons -->
<link href="http://netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css" rel="stylesheet">
<!-- Fonts -->
<link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Alice|Open+Sans:400,300,700">
<!-- Custom styles -->
<link rel="stylesheet" href="assets/css/styles.css">
<!--[if lt IE 9]> <script src="assets/js/html5shiv.js"></script> <![endif]-->
</head>
<body id="top" class="home" data-spy="scroll" data-target="#navbar" data-offset="50">
<header id="header">
<div id="head" class="parallax" parallax-speed="2">
<h1 id="top-pic" class="text-center">
<span class="title">Stephen <span class="ampersand">♥</span> Avery</span>
<span class="tagline">May 16, 2015</span>
</h1>
</div>
<nav id="navbar" class="navbar navbar-default navbar-sticky">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="#top">
<img id="logo" src="assets/images/A&S_small.png"/>
</a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav">
<li>
<a href="#our-story">Our Story</a>
</li>
<li>
<a href="#our-people">Our People</a>
</li>
<li>
<a href="#our-celebration">Our Celebration</a>
</li>
<li>
<a href="#location">The Location</a>
</li>
<li>
<a href="#accommodations">Accommodations</a>
</li>
<li>
<a href="#rsvp">RSVP</a>
</li>
<li>
<a href="#registry">Registry</a>
</li>
</ul>
</div>
<!-- /.navbar-collapse -->
</div>
</nav>
</header>
<main id="main">
<section id="our-story" class="container">
<div class="row page-header">
<h2 class="text-center">Our Story</h2>
</div>
<div class="row">
<div id="us-carousel" class="carousel slide" data-ride="carousel">
<!-- Carousel items -->
<div class="carousel-inner" role="listbox" data-toggle="modal" data-target="#us-info">
<div class="item active">
<img src="assets/images/us/me_n_aves1.jpg" data-adaptive-background='1'/>
</div>
<div class="item">
<img src="assets/images/us/me_n_aves2.jpg" data-adaptive-background='1'/>
</div>
<div class="item">
<img src="assets/images/us/me_n_aves3.jpg" data-adaptive-background='1'/>
</div>
<div class="item">
<img src="assets/images/us/me_n_aves4.jpg" data-adaptive-background='1'/>
</div>
<div class="item">
<img src="assets/images/us/me_n_aves5.jpg" data-adaptive-background='1'/>
</div>
<div class="item">
<img src="assets/images/us/me_n_aves6.jpg" data-adaptive-background='1'/>
</div>
<div class="item">
<img src="assets/images/us/me_n_aves7.jpg" data-adaptive-background='1'/>
</div>
<div class="item">
<img src="assets/images/us/me_n_aves8.jpg" data-adaptive-background='1'/>
</div>
<div class="item">
<img src="assets/images/us/me_n_aves9.jpg" data-adaptive-background='1'/>
</div>
<div class="item">
<img src="assets/images/us/me_n_aves10.jpg" data-adaptive-background='1'/>
</div>
</div>
<!-- Carousel nav -->
<a class="carousel-control left" href="#us-carousel" data-slide="prev">
<span class="glyphicon glyphicon-chevron-left"></span>
</a>
<a class="carousel-control right" href="#us-carousel" data-slide="next">
<span class="glyphicon glyphicon-chevron-right"></span>
</a>
</div>
</div>
<aside id="us-info" class="modal fade">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
</div>
<div class="modal-body">
<p>
All it took was a conversation about Jurassic Park for Stephen and Avery to want to get to know each other better. On a snowy February evening in 2013, they fell in love over sushi, battleship, and conversation about their quirkiness. It didn’t take long for them to realize how much they had in common.
</p>
<p>
They spent the next several months exploring their interests and discovering new things together. Everything became an adventure. Nights in cooking quickly turned into dance parties. Trips to visit friends and family became all about planning their next excursion. Spouts of make believe, like pretending to be vikings, may have happened once or twice... Snuggling up to marathons of Netflix or Willow and Jaws on repeat became part of their weekly routine. Spend anytime around them and its clear they are soul mates. They knew from their first conversation that they’d spend their life together.
</p>
<p>
During June of 2014, Avery was in a cabin in the woods with her lady loves, much of the conversation revolved around the excitement and anticipation of many engagements on the horizon. Little did Avery know what was to come. The next morning she went on a walk with her friend and there, waiting for her at the bottom of the hill, was Stephen on one knee.
</p>
<p>
Avery and Stephen are eagerly counting down the days until they celebrate their love for each other with all their friends and family. They are looking forward to sharing this special day with each of you.
</p>
</div>
</div>
</div>
</aside>
</section>
<section id="our-people">
<div class="container">
<div class="row page-header">
<h2 class="text-center">Our People</h2>
</div>
<div class="people row">
<div class="person col-xs-12 col-sm-6 col-md-3" data-toggle="modal" data-target="#brian-info">
<img class="img-responsive" src="assets/images/people/me_n_brian1.jpg" alt="Brian Fischer">
</div>
<div class="person col-xs-12 col-sm-6 col-md-3" data-toggle="modal" data-target="#chrissy-info">
<img class="img-responsive" src="assets/images/people/aves_n_chrissy1.jpg" alt="Chrissy Marquardt-Wilson">
</div>
<div class="person col-xs-12 col-sm-6 col-md-3" data-toggle="modal" data-target="#brendan-info">
<img class="img-responsive" src="assets/images/people/me_n_b1.jpg" alt="Brendan Neibergall">
</div>
<div class="person col-xs-12 col-sm-6 col-md-3" data-toggle="modal" data-target="#diane-info">
<img class="img-responsive" src="assets/images/people/aves_n_diane1.jpg" alt="Diane Call">
</div>
<div class="person col-xs-12 col-sm-6 col-md-3" data-toggle="modal" data-target="#rob-info">
<img class="img-responsive" src="assets/images/people/me_n_rob1.jpg" alt="Rob Hammel">
</div>
<div class="person col-xs-12 col-sm-6 col-md-3" data-toggle="modal" data-target="#carly-info">
<img class="img-responsive" src="assets/images/people/aves_n_carly1.jpg" alt="Carly Oishi">
</div>
<div class="person col-xs-12 col-sm-6 col-md-3" data-toggle="modal" data-target="#jeff-info">
<img class="img-responsive" src="assets/images/people/me_n_jeff1.jpg" alt="Jeff Kitchen">
</div>
<div class="person col-xs-12 col-sm-6 col-md-3" data-toggle="modal" data-target="#emily-info">
<img class="img-responsive" src="assets/images/people/aves_n_emily1.jpg" alt="Emily (Eschmeyer) Lee">
</div>
<div class="person col-xs-12 col-sm-6 col-md-3" data-toggle="modal" data-target="#blake-info">
<img class="img-responsive" src="assets/images/people/me_n_blake1.jpg" alt="Blake Eddleman">
</div>
<div class="person col-xs-12 col-sm-6 col-md-3" data-toggle="modal" data-target="#biel-info">
<img class="img-responsive" src="assets/images/people/aves_n_biel1.jpg" alt="Laura Biel">
</div>
<div class="person col-xs-12 col-sm-6 col-md-3" data-toggle="modal" data-target="#jacob-info">
<img class="img-responsive" src="assets/images/people/aves_n_jacob5.jpg" alt="Jacob Wilson">
</div>
<div class="person col-xs-12 col-sm-6 col-md-3" data-toggle="modal" data-target="#parsons-info">
<img class="img-responsive" src="assets/images/people/parsons1.jpg" alt="Lainey, Erin, and Liz Parsons">
</div>
<p class="text-center">
<strong>Stephen and Avery would like to give a special thanks to their parents for helping them create a beautiful weekend to celebrate their love.</strong> Their parents' continued support and guidance has laid a solid foundation for a lifetime of love and happiness. Stephen and Avery feel incredibly thankful to have their mother and father-in-laws join their life. They’re looking forward to many moments with their families.
</p>
<div class="person col-xs-12 col-sm-6 col-md-3" data-toggle="modal" data-target="#mom-info">
<img class="img-responsive" src="assets/images/people/me_n_mom1.jpg" alt="Susan Fischer">
</div>
<div class="person col-xs-12 col-sm-6 col-md-3" data-toggle="modal" data-target="#leigh-info">
<img class="img-responsive" src="assets/images/people/aves_n_leigh1.jpg" alt="Leigh Blair-Wilson">
</div>
<div class="person col-xs-12 col-sm-6 col-md-3" data-toggle="modal" data-target="#dad-info">
<img class="img-responsive" src="assets/images/people/me_n_dad1.jpg" alt="Steve Fischer">
</div>
<div class="person col-xs-12 col-sm-6 col-md-3" data-toggle="modal" data-target="#todd-info">
<img class="img-responsive" src="assets/images/people/aves_n_todd1.jpg" alt="Todd Wilson">
</div>
<aside id="brian-info" class="modal fade">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
</div>
<div class="modal-body">
<div id="brian-carousel" class="carousel slide" data-ride="carousel">
<div class="carousel-inner" role="listbox">
<div class="item active">
<img src="assets/images/people/me_n_brian1.jpg"/>
</div>
<div class="item">
<img src="assets/images/people/me_n_brian2.jpg"/>
</div>
<div class="item">
<img src="assets/images/people/me_n_brian3.jpg"/>
</div>
</div>
<a class="carousel-control left" href="#brian-carousel" data-slide="prev">
<span class="glyphicon glyphicon-chevron-left"></span>
</a>
<a class="carousel-control right" href="#brian-carousel" data-slide="next">
<span class="glyphicon glyphicon-chevron-right"></span>
</a>
</div>
</div>
<div class="modal-footer">
<h4>Brian Fischer</h4>
<p>
Brian splits his time between Springfield, IL and St. Louis, MO. working as an insulator for the Asbestos Worker's Local #1. When he's not at work, you can find him relaxing with friends or sleeping on Stephen's couch.
</p>
<p>
As Stephen's little brother, he has been subjected to his wrath since birth. They spent much of their years growing up playing hockey - even though Brian can’t skate as fast as him, and inventing wrestling moves on the trampoline in the back yard. As they got older, the rough-housing went away, but the friendship stayed. Stephen often refers to Brian as his trusted side kick, but he wouldn’t have it any other way. Brian has always been Stephen’s favorite partner-in-crime.
</p>
</div>
</div>
</div>
</aside>
<aside id="chrissy-info" class="modal fade">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
</div>
<div class="modal-body">
<div id="chrissy-carousel" class="carousel slide" data-ride="carousel">
<div class="carousel-inner" role="listbox">
<div class="item active">
<img src="assets/images/people/aves_n_chrissy1.jpg"/>
</div>
<div class="item">
<img src="assets/images/people/aves_n_chrissy2.jpg"/>
</div>
</div>
</div>
<a class="carousel-control left" href="#chrissy-carousel" data-slide="prev">
<span class="glyphicon glyphicon-chevron-left"></span>
</a>
<a class="carousel-control right" href="#chrissy-carousel" data-slide="next">
<span class="glyphicon glyphicon-chevron-right"></span>
</a>
</div>
<div class="modal-footer">
<h4>Chrissy Marquardt-Wilson</h4>
<p>
Chrissy lives in Columbus, OH with her husband, Chris, and their Frida dog. She is an assistant registrar. When she is not living the dream and traveling to Europe with famous pieces of art, she is working on their business and moving toward their future goal of living off the grid.
</p>
<p>
Avery and Chrissy met their first day of college and quickly discovered they were lady soul mates. They’ve spent the last ten years on endless adventures; from road trips blaring Rilo and Regina to photo booth shoots times 1000. They are incredibly alike and can sometimes be described as “emotional, overly sensitive, dramatic and a little neurotic,” but who doesn’t need a little of that in their lives. As members of the tripod, there’s no telling what adventure they might end up on next.
</p>
</div>
</div>
</div>
</aside>
<aside id="brendan-info" class="modal fade">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
</div>
<div class="modal-body">
<div id="#brendan-carousel" class="carousel slide" data-ride="carousel">
<div class="carousel-inner" role="listbox">
<div class="item active">
<img src="assets/images/people/me_n_b1.jpg"/>
</div>
<div class="item">
<img src="assets/images/people/me_n_b2.jpg"/>
</div>
</div>
</div>
<a class="carousel-control left" href="#brendan-carousel" data-slide="prev">
<span class="glyphicon glyphicon-chevron-left"></span>
</a>
<a class="carousel-control right" href="#brendan-carousel" data-slide="next">
<span class="glyphicon glyphicon-chevron-right"></span>
</a>
</div>
<div class="modal-footer">
<h4>Brendan Neibergall</h4>
<p>
Brendan lives in Charlotte, NC with his wife, Bridget, and their two children, Rowan and Milo. When he's not working for Wells-Fargo, he can probably be found watching his favorite movie, SuperNova.
</p>
<p>
Stephen met Brendan in kindergarten. They’ve spent the last almost 30 years skateboarding, going on epic roadtrips, falling off gazebos, and playing in bands like Fetus Pizza. As Stephen puts it, they’ve done everything together.
</p>
</div>
</div>
</div>
</aside>
<aside id="diane-info" class="modal fade">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
</div>
<div class="modal-body">
<div id="diane-carousel" class="carousel slide" data-ride="carousel">
<div class="carousel-inner" role="listbox">
<div class="item active">
<img src="assets/images/people/aves_n_diane1.jpg"/>
</div>
<div class="item">
<img src="assets/images/people/aves_n_diane2.jpg"/>
</div>
</div>
</div>
<a class="carousel-control left" href="#dianediane-carousel" data-slide="prev">
<span class="glyphicon glyphicon-chevron-left"></span>
</a>
<a class="carousel-control right" href="#diane-carousel" data-slide="next">
<span class="glyphicon glyphicon-chevron-right"></span>
</a>
</div>
<div class="modal-footer">
<h4>Diane Call</h4>
<p>
Diane lives in Greenville, SC with her fiancé, Jeremy. She is a graphic designer. When she’s not spending time designing for work and pleasure, she can be found hiking trails in the Appalachian mountains, finding the next delicious craft beer, and perfecting the art of popcorn.
</p>
<p>
Avery and Diane met their sophomore year of college. Their bond was cemented over a Midori and Amaretto sour, but has only grown after living in three cities together. Though they’ve made several pledges to be accountability partners, they often convince each other to give into the impulses. They share many guilty pleasures like Sunday Fundays, craft beer, and Vampire Diaries.
</p>
</div>
</div>
</div>
</aside>
<aside id="rob-info" class="modal fade">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
</div>
<div class="modal-body">
<div id="rob-carousel" class="carousel slide" data-ride="carousel">
<div class="carousel-inner" role="listbox">
<div class="item active">
<img src="assets/images/people/me_n_rob1.jpg"/>
</div>
<div class="item">
<img src="assets/images/people/me_n_rob2.jpg"/>
</div>
</div>
</div>
<a class="carousel-control left" href="#rob-carousel" data-slide="prev">
<span class="glyphicon glyphicon-chevron-left"></span>
</a>
<a class="carousel-control right" href="#rob-carousel" data-slide="next">
<span class="glyphicon glyphicon-chevron-right"></span>
</a>
</div>
<div class="modal-footer">
<h4>Rob Hammel</h4>
<p>
Rob lives in Chicago, IL where he works as an interactive programmer. Outside of work, he likes to get on a gym mat and try to break people's arms. But that's only Friday. Otherwise he's hanging out at Cork lounge, or on the hunt for the perfect pancake.
</p>
<p>
Stephen met Rob in 7th grade. Just a few years later, they were roommates together. Their days and nights were filled with Poker Games, Gereral Tso’s Chicken, and Top Gun marathons. One could say that Rob helped Stephen expedite his relationship with Avery, with questions like “so when are you going to be facebook official and are you moving in?”
</p>
</div>
</div>
</div>
</aside>
<aside id="carly-info" class="modal fade">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
</div>
<div class="modal-body">
<div id="carly-carousel" class="carousel slide" data-ride="carousel">
<div class="carousel-inner" role="listbox">
<div class="item active">
<img src="assets/images/people/aves_n_carly1.jpg"/>
</div>
<div class="item">
<img src="assets/images/people/aves_n_carly2.jpg"/>
</div>
</div>
</div>
<a class="carousel-control left" href="#carly-carousel" data-slide="prev">
<span class="glyphicon glyphicon-chevron-left"></span>
</a>
<a class="carousel-control right" href="#carly-carousel" data-slide="next">
<span class="glyphicon glyphicon-chevron-right"></span>
</a>
</div>
<div class="modal-footer">
<h4>Carly Oishi</h4>
<p>
Carly lives in Chicago, IL with her partner, Chris, and their little man, Roan. As a writer and musician, she uses her words to bring people to uncontrollable laughter and tears. When she is not entertaining the world, she spends her time trying to keep small children alive.
</p>
<p>
Avery and Carly met shortly after Avery moved to Chicago thanks to a mutual friend who brought them instantly together. They’ve spent the last few years dancing, seeking out the perfect blow pops from the bathroom attendant, and wishing they were neighbors. Too many moments to even remember. No matter where they are, they always make time to delve into all the nuances of love and life over bottles of wine, or more recently slices of pie.
</p>
</div>
</div>
</div>
</aside>
<aside id="jeff-info" class="modal fade">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
</div>
<div class="modal-body">
<div id="jeff-carousel" class="carousel slide" data-ride="carousel">
<div class="carousel-inner" role="listbox">
<div class="item active">
<img src="assets/images/people/me_n_jeff1.jpg"/>
</div>
<div class="item">
<img src="assets/images/people/me_n_jeff2.jpg"/>
</div>
</div>
</div>
<a class="carousel-control left" href="#jeff-carousel" data-slide="prev">
<span class="glyphicon glyphicon-chevron-left"></span>
</a>
<a class="carousel-control right" href="#jeff-carousel" data-slide="next">
<span class="glyphicon glyphicon-chevron-right"></span>
</a>
</div>
<div class="modal-footer">
<h4>Jeff Kitchen</h4>
<p>
Jeff lives in Elgin, Il with his wife Anna and their three dog-babies, Gypsy, Johnny, and Angus. Jeff works with Stephen at BidClerk as an operations manager. In his spare time he likes framing limited edition posters, fostering puppies, and hunting the elusive Sasquatch.
</p>
<p>
Stephen met Jeff in 7th grade. They spent their days playing hackie sack, stealing penguins, and playing NHL '94 all night at sleepovers. After college, Jeff moved to Chicago. Stephen likes to say that, after the move, Jeff was in so much withdraw that he got him the job at BidClerk so they could be together again.
</p>
</div>
</div>
</div>
</aside>
<aside id="emily-info" class="modal fade">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
</div>
<div class="modal-body">
<div id="emily-carousel" class="carousel slide" data-ride="carousel">
<div class="carousel-inner" role="listbox">
<div class="item active">
<img src="assets/images/people/aves_n_emily1.jpg"/>
</div>
<div class="item">
<img src="assets/images/people/aves_n_emily2.jpg"/>
</div>
</div>
</div>
<a class="carousel-control left" href="#emily-carousel" data-slide="prev">
<span class="glyphicon glyphicon-chevron-left"></span>
</a>
<a class="carousel-control right" href="#emily-carousel" data-slide="next">
<span class="glyphicon glyphicon-chevron-right"></span>
</a>
</div>
<div class="modal-footer">
<h4>Emily (Eschmeyer) Lee</h4>
<p>
Emily lives in Cincinnati, OH with her husband and Bella pup. She is an injury prevention coordinator. When she is not educating people on how to keep their children alive, she is going on camping adventures and maintaining her love of the Bengals despite her husband’s loyalty to the Browns.
</p>
<p>
Avery and Emily met their freshman year of high school. Conversations about life, love and plans for the future started in a notebook passed back and forth between classes. That quickly turned into Donkey coffee breaks in college and catching up at one of the many Cincinnati breweries. Though its been several years since they’ve lived in the same city, they fall back into step the moment they see each other.
</p>
</div>
</div>
</div>
</aside>
<aside id="blake-info" class="modal fade">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
</div>
<div class="modal-body">
<div id="blake-carousel" class="carousel slide" data-ride="carousel">
<div class="carousel-inner" role="listbox">
<div class="item active">
<img src="assets/images/people/me_n_blake1.jpg"/>
</div>
<div class="item">
<img src="assets/images/people/me_n_blake2.jpg"/>
</div>
</div>
</div>
<a class="carousel-control left" href="#blake-carousel" data-slide="prev">
<span class="glyphicon glyphicon-chevron-left"></span>
</a>
<a class="carousel-control right" href="#blake-carousel" data-slide="next">
<span class="glyphicon glyphicon-chevron-right"></span>
</a>
</div>
<div class="modal-footer">
<h4>Blake Eddleman</h4>
<p>
Blake lives in Springfield, IL and he works on the TV! He is a man of fine tastes. He likes his wine red, his noobs pwned and his toddys HOT. He can also do a mean impression of the bad guy from Who Framed Roger Rabbit?
</p>
<p>
Stephen and Blake met in high school, Together, they fought terrorists in Call of Duty, ate a lot of pizza, and watched a LOT of Predator.
</p>
</div>
</div>
</div>
</aside>
<aside id="biel-info" class="modal fade">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
</div>
<div class="modal-body">
<div id="biel-carousel" class="carousel slide" data-ride="carousel">
<div class="carousel-inner" role="listbox">
<div class="item active">
<img src="assets/images/people/aves_n_biel1.jpg"/>
</div>
<div class="item">
<img src="assets/images/people/aves_n_biel2.jpg"/>
</div>
</div>
</div>
<a class="carousel-control left" href="#biel-carousel" data-slide="prev">
<span class="glyphicon glyphicon-chevron-left"></span>
</a>
<a class="carousel-control right" href="#biel-carousel" data-slide="next">
<span class="glyphicon glyphicon-chevron-right"></span>
</a>
</div>
<div class="modal-footer">
<h4>Laura Biel</h4>
<p>
Laura lives in Cleveland, OH with her fiancé, Alex. She is graphic designer. When she is not in the midst of planning her own wedding, she is a devoted Cleveland Indians fan and charmer of all things squirrel.
</p>
<p>
Avery and Biel met their freshman year of college and quickly connected over whip cream at dance parties, hunting down ghosts in tunnels and abandoned buildings, and determining just how one would journey to the center of the earth. As members of the tripod, Biel, thankfully brings a voice of reason before any crazy, impulsive decision can be completed.
</p>
</div>
</div>
</div>
</aside>
<aside id="jacob-info" class="modal fade">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
</div>
<div class="modal-body">
<div id="jacob-carousel" class="carousel slide" data-ride="carousel">
<div class="carousel-inner" role="listbox">
<div class="item active">
<img src="assets/images/people/aves_n_jacob1.jpg"/>
</div>
<div class="item">
<img src="assets/images/people/aves_n_jacob2.jpg"/>
</div>
<div class="item">
<img src="assets/images/people/aves_n_jacob3.jpg"/>
</div>
</div>
</div>
<a class="carousel-control left" href="#jacob-carousel" data-slide="prev">
<span class="glyphicon glyphicon-chevron-left"></span>
</a>
<a class="carousel-control right" href="#jacob-carousel" data-slide="next">
<span class="glyphicon glyphicon-chevron-right"></span>
</a>
</div>
<div class="modal-footer">
<h4>Jacob Wilson</h4>
<p>
Jacob lives in Cincinnati, Oh. When he’s not encouraging people to deepen their love of literature, he can be found performing comedy throughout the city and tristate area.
</p>
<p>
Although Avery is only 7 years older than Jacob, from the moment he was born she thought he was her baby. Of course it didn’t take long before she realized that he was 1) not going to listen to her and 2) got a lot of the attention. Instantly the sibling rivalry began. Despite the occasional competition, their bond has only grown throughout their life over mutual love of similar music, hockey, epic battles of RISK and Egyptian Rat Screw, and laughing about family moments. It seemed only fitting for Jacob to marry Avery and Stephen, especially since he once gave Avery a list of criteria for his future brother-in-law. Thankfully Stephen has met them all.
</p>
</div>
</div>
</div>
</aside>
<aside id="mom-info" class="modal fade">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
</div>
<div class="modal-body">
<div id="mom-carousel" class="carousel slide" data-ride="carousel">
<div class="carousel-inner" role="listbox">
<div class="item active">
<img src="assets/images/people/me_n_mom1.jpg"/>
</div>
<div class="item">
<img src="assets/images/people/me_n_mom2.jpg"/>
</div>
</div>
</div>
<a class="carousel-control left" href="#mom-carousel" data-slide="prev">
<span class="glyphicon glyphicon-chevron-left"></span>
</a>
<a class="carousel-control right" href="#mom-carousel" data-slide="next">
<span class="glyphicon glyphicon-chevron-right"></span>
</a>
</div>
<div class="modal-footer">
<h4>Susan Fischer</h4>
</div>
</div>
</div>
</aside>
<aside id="leigh-info" class="modal fade">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
</div>
<div class="modal-body">
<div id="leigh-carousel" class="carousel slide" data-ride="carousel">
<div class="carousel-inner" role="listbox">
<div class="item active">
<img src="assets/images/people/aves_n_leigh1.jpg"/>
</div>
<div class="item">
<img src="assets/images/people/aves_n_leigh2.jpg"/>
</div>
</div>
</div>
<a class="carousel-control left" href="#leigh-carousel" data-slide="prev">
<span class="glyphicon glyphicon-chevron-left"></span>
</a>
<a class="carousel-control right" href="#leigh-carousel" data-slide="next">
<span class="glyphicon glyphicon-chevron-right"></span>
</a>
</div>
<div class="modal-footer">
<h4>Leigh Blair-Wilson</h4>
</div>
</div>
</div>
</aside>
<aside id="dad-info" class="modal fade">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
</div>
<div class="modal-body">
<div id="dad-carousel" class="carousel slide" data-ride="carousel">
<div class="carousel-inner" role="listbox">
<div class="item active">
<img src="assets/images/people/me_n_dad1.jpg"/>
</div>
<div class="item">
<img src="assets/images/people/me_n_dad2.jpg"/>
</div>
</div>
</div>
<a class="carousel-control left" href="#dad-carousel" data-slide="prev">
<span class="glyphicon glyphicon-chevron-left"></span>
</a>
<a class="carousel-control right" href="#dad-carousel" data-slide="next">
<span class="glyphicon glyphicon-chevron-right"></span>
</a>
</div>
<div class="modal-footer">
<h4>Steve Fischer</h4>
</div>
</div>
</div>
</aside>
<aside id="todd-info" class="modal fade">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
</div>
<div class="modal-body">
<div id="todd-carousel" class="carousel slide" data-ride="carousel">
<div class="carousel-inner" role="listbox">
<div class="item active">
<img src="assets/images/people/aves_n_todd1.jpg"/>
</div>
<div class="item">
<img src="assets/images/people/aves_n_todd2.jpg"/>
</div>
</div>
</div>
<a class="carousel-control left" href="#todd-carousel" data-slide="prev">
<span class="glyphicon glyphicon-chevron-left"></span>
</a>
<a class="carousel-control right" href="#todd-carousel" data-slide="next">
<span class="glyphicon glyphicon-chevron-right"></span>
</a>
</div>
<div class="modal-footer">
<h4>Todd Wilson</h4>
</div>
</div>
</div>
</aside>
<aside id="parsons-info" class="modal fade">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
</div>
<div class="modal-body">
<div id="parsons-carousel" class="carousel slide" data-ride="carousel">
<div class="carousel-inner" role="listbox">
<div class="item active">
<img src="assets/images/people/parsons1.jpg"/>
</div>
<div class="item">
<img src="assets/images/people/parsons2.jpg"/>
</div>
</div>
</div>
<a class="carousel-control left" href="#parsons-carousel" data-slide="prev">
<span class="glyphicon glyphicon-chevron-left"></span>
</a>
<a class="carousel-control right" href="#parsons-carousel" data-slide="next">
<span class="glyphicon glyphicon-chevron-right"></span>
</a>
</div>
<div class="modal-footer">
<h4>Lanie, Erin, and Liz Parsons</h4>
<p>
The Parsons girls were born when Avery was 10, 13, and 15 years old. Although they are cousins, they’ve always felt more like Avery’s little sisters. Avery spent many hours with the girls, some of which were filled with playing dress up, watching Dirty Dancing and Charmed on repeat, and occasionally daydreaming of all girly things: weddings. Once the girls met Stephen, they knew instantly he was the one. Soon requests for Avery to come home to visit, were replaced by “What’s Stephen up to? When do we get to see Stephen next?” As Erin likes to say, “Stephen became the family’s new favorite.”
</p>
</div>
</div>
</div>
</aside>
</div>
</div>
</section>
<section id="our-celebration">
<div class="container">
<div class="row page-header">
<h2 class="text-center">Our Celebration</h2>
</div>
<div class="row events">
<div class="col-md-4 text-center">
<img class="event" src="assets/images/events/ceremony-gray.png" alt="Ceremony">
<h3>Ceremony</h3>
<h4>5:30pm</h4>
<p>
The ceremony will take place on the lawn of the plantation.
</p>
</div>
<div class="col-md-4 text-center">
<img class="event" src="assets/images/events/cocktails-gray.png" alt="Coctail Hour">
<h3>Cocktails</h3>
<h4>6:00pm</h4>
<p>
Drinks & Hors d'oeuvres will be served on the patio, directly following the ceremony.
</p>
</div>
<div class="col-md-4 text-center">
<img class="event" src="assets/images/events/dinner-gray.png" alt="Reception">
<h3>Reception</h3>
<h4>7:00pm</h4>
<p>
A pig roast will kick off the reception where there will be endless dancing, love and laughter.
</p>
</div>
</div>
</div>
</section>
<section id="location">
<div class="container">
<div class="row" id="celebration-location">
<h2 class="text-center">The Location</h2>
</div>
<div class="row">
<p>
For over 200 years, the Richwood Plantation has overlooked the Ohio River. It served as the resting stop for many high class individuals, including President McKinley and Mr. Ed. In its early days, it was connected to the milling industry, but later served as an equestrian camp for young girls. Though many people have passed through its gates, legend has it that the spirits of the early residents can still be felt...
</p>
</div>
<div class="row">
<div class="col-md-10 col-md-offset-1">
<img src="assets/images/richwood/front2.jpg" class="img-responsive"/>
</div>
</div>
<div class="row text-center">
<p>
Located about an hour away from both Cincinnati and Louisville, the <a href="http://richwoodplantation.com" target="_blank">Richwood Plantation</a> is in the quaint town of <a href="http://www.trimblecounty.ky.gov/cities/milton.htm">Milton, KY</a>, right across the river from <a href="http://www.madison-in.gov/" target="_blank">Madison, IN</a>
</p>
</div>
<aside id="richwood-info" class="map-marker">
<img src="assets/images/richwood/horse.jpg" class="img-responsive" style="height:100px;width:100px;" alt="Richwood Plantation 1233 Kentucky 36 Milton, KY 40045" title="Richwood Plantation">
<h4>Richwood Plantation</h4>
<h5>1233 Kentucky 36 Milton, KY 40045</h5>
</aside>
<div class="row">
<div class="col-sm-12">
<div id="map-wrapper" style="height:300px;"></div>
</div>
</div>
</div>
</section>
<section id="accommodations" class="container">
<div class="row page-header">
<h2 class="text-center">Accommodations</h2>
</div>
<div class="row text-center">
<p>
A block of rooms have been reserved for guests at the <a href="http://hamptoninn3.hilton.com/en/hotels/kentucky/hampton-inn-carrollton-CRTKYHX/index.html" target="_blank">Hampton Inn</a> in Carrolton, KY.
</p>
<p >
Reservations are under the Blair-Wilson/Fischer Wedding
</p>
</div>
</section>
<section id="rsvp" class="container">
<div class="row page-header">
<h2 class="text-center">RSVP</h2>
</div>
<div class="row">
<!-- <div class="panel"> -->
<form id="rsvp-form" action="https://docs.google.com/forms/d/1DomXIpWDSWCdlthk51H7FRsaNPObfO3S76yTfWQcANY/formResponse" method="POST">
<div class="input text form-group">
<label for="rsvp-name">What is your name?</label>
<input type="text" id="rsvp-name" name="name" data-g-name="entry.434952058" size="40" class="form-control g-form" placeholder="Madmartigan">
</div>
<div class="input select form-group">
<label for="rsvp-attending">Are you attending?</label>
<select id="rsvp-attending" name="attending" data-g-name="entry.1040970443" class="form-control g-form">
<option value="yes" checked>Wouldn't miss it!</option>
<option value="no">Sadly decline</option>
</select>
</div>
<div class="input select form-group">
<label for="rsvp-guest">Who is accompanying you?</label>
<input type="text" id="rsvp-guest" name="guest" data-g-name="entry.112527331" size="40" class="form-control g-form" placeholder="Sorsha">
</div>
<div class="input text form-group">
<label for="rsvp-allergies">What are your food allergies?</label>
<input type="text" id="rsvp-allergies" name="allergies" data-g-name="entry.203530288" size="40" class="form-control g-form" placeholder="Beets, Limes, and Rice"/>
</div>
<label for="rsvp-song1">Choose up to 5 songs that you would like to hear at our wedding.</label>
<div class="input text form-group">
<input id="rsvp-song1" name="song1" class="form-control" placeholder="Group Love - Ways to Go">
</div>
<div class="input text form-group">
<input name="song2" class="form-control" placeholder="Biz Markie - Just A Friend">
</div>
<div class="input text form-group">
<input name="song3" class="form-control" placeholder="LCD Soundsystem - Dance Yrself Clean">
</div>
<div class="input text form-group">
<input name="song4" class="form-control" placeholder="Coolio - Gangsters Paradise">
</div>
<div class="input text form-group">
<input name="song5" class="form-control" placeholder="Beach Boys - God Only Knows">
</div>
<input type="hidden" name="songs" class="g-form" data-g-name="entry.1626036784"/>
<div class="row">
<div class="input-wrapper submit form-group">
<input type="submit" value="I'm Attending" class="btn btn-primary">
</div>
</div>
</form>
<!-- </div> -->
<div id="rsvp-success" class="text-center" style="display:none;">
<p>Thank you for RSVPing!</p>
</div>
</div>
</section>
<section id="registry" class="container">
<div class="row page-header">
<h2 class="text-center">Registry</h2>
</div>
<div class="row">
<div class="col-xs-12 col-sm-6 col-md-4">
<a class="registry-item" href="http://www.crateandbarrel.com/Gift-Registry/Guest/Find-Registry.aspx">
<span class="img">
<img class="registry-item img-responsive" src="assets/images/crate_logo.png" alt="Crate & Barrel">
</span>
</a>
</div>
<div class="col-xs-12 col-sm-6 col-md-4">
<a class="registry-item" href="http://www.amazon.com/gp/wedding/homepage">
<span class="img">
<img class="registry-item img-responsive" src="assets/images/amazon_logo.png" alt="Amazon">
</span>
</a>
</div>
<div class="col-xs-12 col-sm-6 col-md-4">
<a class="registry-item" href="http://www.bedbathandbeyond.com/store/page/Registry">
<span class="img">
<img class="registry-item img-responsive" src="assets/images/bed-bath-beyond-logo.png" alt="Bed Bath & Beyond">
</span>
</a>
</div>
</div>
</section>
</main>
<footer id="footer" class="container-fluid">
<div class="row">
<div class="col-md-9">
<span>We look forward to seeing you there. Thank you for celebrating this moment with us!</span>