-
Notifications
You must be signed in to change notification settings - Fork 32
/
plugin-build.shtml
1484 lines (1386 loc) · 109 KB
/
plugin-build.shtml
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 class="dcf-no-js dcf-no-webp" lang="en"><!-- InstanceBegin template="/Templates/debug.dwt" codeOutsideHTMLIsLocked="false" -->
<head>
<!--#include virtual="/wdn/templates_5.3/includes/global/head-1.html" -->
<!-- InstanceBeginEditable name="doctitle" -->
<title>Debugging Out | Framework Testing Page</title>
<!-- InstanceEndEditable -->
<!--#include virtual="/wdn/templates_5.3/includes/global/head-2-local.html" -->
<!-- InstanceBeginEditable name="head" -->
<!-- Place optional header elements here -->
<!-- InstanceEndEditable -->
</head>
<body class="debug unl" data-version="5.3">
<!--#include virtual="/wdn/templates_5.3/includes/global/skip-nav.html" -->
<!--
<div class="dcf-alert dcf-wrapper dcf-pt-4 dcf-pb-4 dcf-txt-xs">
<header class="dcf-alert-header">
<div role="heading">
Emergency Alert
</div>
</header>
<p class="dcf-alert-msg">This alert is a test of the alert system. If this was an actual alert there would also be an actual emergency.</p>
<footer class="dcf-alert-footer">
<div role="heading">
Issued
</div>
<time class="dcf-pubdate" datetime="2018-12-02 11:11:03-0400">December 2, 2018</time>
<div role="heading">
Additional Info <small class="dcf-txt-xs">if available</small>
</div>
<a href="https://www.unl.edu/">https://www.unl.edu/</a>
</footer>
</div>
-->
<header class="dcf-header" id="dcf-header" role="banner">
<!--#include virtual="/wdn/templates_5.3/includes/global/header-global-1.html" -->
<!--#include virtual="/wdn/templates_5.3/includes/global/cta-header-1.html" -->
<!--#include virtual="/wdn/templates_5.3/includes/global/visit-header-1.html" -->
<!-- InstanceBeginEditable name="headervisit" -->
<!--#include virtual="/wdn/templates_5.3/includes/local/visit-local.html" -->
<!-- InstanceEndEditable -->
<!--#include virtual="/wdn/templates_5.3/includes/global/visit-header-2.html" -->
<!--#include virtual="/wdn/templates_5.3/includes/global/apply-header-1.html" -->
<!-- InstanceBeginEditable name="headerapply" -->
<!--#include virtual="/wdn/templates_5.3/includes/local/apply-local.html" -->
<!-- InstanceEndEditable -->
<!--#include virtual="/wdn/templates_5.3/includes/global/apply-header-2.html" -->
<!--#include virtual="/wdn/templates_5.3/includes/global/give-header-1.html" -->
<!-- InstanceBeginEditable name="headergive" -->
<!--#include virtual="/wdn/templates_5.3/includes/local/give-local.html" -->
<!-- InstanceEndEditable -->
<!--#include virtual="/wdn/templates_5.3/includes/global/give-header-2.html" -->
<!--#include virtual="/wdn/templates_5.3/includes/global/cta-header-2.html" -->
<!--#include virtual="/wdn/templates_5.3/includes/global/idm.html" -->
<!--#include virtual="/wdn/templates_5.3/includes/global/search.html" -->
<!--#include virtual="/wdn/templates_5.3/includes/global/header-global-2.html" -->
<!--#include virtual="/wdn/templates_5.3/includes/global/logo-lockup-1.html" -->
<!--#include virtual="/wdn/templates_5.3/includes/global/site-affiliation-1.html" -->
<!-- InstanceBeginEditable name="affiliation" -->
<a href="http://arts.unl.edu/">Hixson-Lied College of Fine & Performing Arts</a>
<!-- InstanceEndEditable -->
<!--#include virtual="/wdn/templates_5.3/includes/global/site-affiliation-2.html" -->
<!--#include virtual="/wdn/templates_5.3/includes/global/site-title-1.html" -->
<!-- InstanceBeginEditable name="titlegraphic" -->
<a class="dcf-txt-h6" href="https://arts.unl.edu/music">
Glenn Korff School of Music
</a>
<!-- InstanceEndEditable -->
<!--#include virtual="/wdn/templates_5.3/includes/global/site-title-2.html" -->
<!--#include virtual="/wdn/templates_5.3/includes/global/logo-lockup-2.html" -->
<!--#include virtual="/wdn/templates_5.3/includes/global/nav-toggle-group.html" -->
<!--#include virtual="/wdn/templates_5.3/includes/global/nav-menu-1.html" -->
<!--#include virtual="/wdn/templates_5.3/includes/global/nav-toggle-btn.html" -->
<!--#include virtual="/wdn/templates_5.3/includes/global/nav-menu-child-1.html" -->
<!-- InstanceBeginEditable name="navlinks" -->
<!--#include virtual="/wdn/templates_5.3/includes/local/nav-local.html" -->
<!-- InstanceEndEditable -->
<!--#include virtual="/wdn/templates_5.3/includes/global/cta-nav-1.html" -->
<!--#include virtual="/wdn/templates_5.3/includes/global/visit-nav-1.html" -->
<!-- InstanceBeginEditable name="navvisit" -->
<!--#include virtual="/wdn/templates_5.3/includes/local/visit-local.html" -->
<!-- InstanceEndEditable -->
<!--#include virtual="/wdn/templates_5.3/includes/global/visit-nav-2.html" -->
<!--#include virtual="/wdn/templates_5.3/includes/global/apply-nav-1.html" -->
<!-- InstanceBeginEditable name="navapply" -->
<!--#include virtual="/wdn/templates_5.3/includes/local/apply-local.html" -->
<!-- InstanceEndEditable -->
<!--#include virtual="/wdn/templates_5.3/includes/global/apply-nav-2.html" -->
<!--#include virtual="/wdn/templates_5.3/includes/global/give-nav-1.html" -->
<!-- InstanceBeginEditable name="navgive" -->
<!--#include virtual="/wdn/templates_5.3/includes/local/give-local.html" -->
<!-- InstanceEndEditable -->
<!--#include virtual="/wdn/templates_5.3/includes/global/give-nav-2.html" -->
<!--#include virtual="/wdn/templates_5.3/includes/global/cta-nav-2.html" -->
<!--#include virtual="/wdn/templates_5.3/includes/global/nav-menu-child-2.html" -->
<!--#include virtual="/wdn/templates_5.3/includes/global/nav-menu-2.html" -->
</header>
<main class="dcf-main" id="dcf-main" role="main" tabindex="-1">
<!-- InstanceBeginEditable name="highlighted" -->
<!-- InstanceEndEditable -->
<!-- InstanceBeginEditable name="hero" -->
<div class="dcf-hero dcf-hero-default">
<!-- InstanceEndEditable -->
<div class="dcf-hero-group-1">
<nav class="dcf-breadcrumbs" id="dcf-breadcrumbs" role="navigation" aria-label="breadcrumbs">
<!-- InstanceBeginEditable name="breadcrumbs" -->
<ol>
<li><a href="https://arts.unl.edu/music">Glenn Korff School of Music</a></li>
<li><a href="https://arts.unl.edu/music/beyond-classroom">Beyond the Classroom</a></li>
<li><span aria-current="page">Ensembles</span></li>
</ol>
<!-- InstanceEndEditable -->
</nav>
<header class="dcf-page-title" id="dcf-page-title">
<!-- InstanceBeginEditable name="pagetitle" -->
<h1>Page title</h1>
<!-- InstanceEndEditable -->
</header>
<!-- InstanceBeginEditable name="herogroup1" -->
<!-- InstanceEndEditable -->
</div>
<!-- InstanceBeginEditable name="herogroup2" -->
<div class="dcf-hero-group-2">
</div>
<!-- InstanceEndEditable -->
</div>
<div class="dcf-main-content dcf-wrapper">
<!-- InstanceBeginEditable name="maincontentarea" -->
<!-- <svg viewBox="0 0 174 152" height="142" width="142"><style>.st0{fill:#d00000}</style><path style="stroke: blue; stroke-width: 4px;" class="st0" d="M114 87L62 5H16v35h10v72H16v35h54v-35H60V65l52 82h46v-35h-10V40h10V5h-54v35h10v47zM26 112H16h10zM114 87L62 5l52 82zM70 112H60h10zM158 112h-10 10z"/><path style="stroke: yellow; stroke-width: 2px;" class="st0" d="M114 87L62 5H16v35h10v72H16v35h54v-35H60V65l52 82h46v-35h-10V40h10V5h-54v35h10v47z"/></svg> -->
<!--
<svg height="142" width="142" style="width: 4em;" viewBox="0 0 142 142"><style>.st0{fill:#d00000}</style><path style="stroke: #d00000; stroke-width: 6px;" class="st0" d="M98 82L46 0H0v35h10v72H0v35h54v-35H44V60l52 82h46v-35h-10V35h10V0H88v35h10v47zM10 107H0h10zM98 82L46 0l52 82zM54 107H44h10zM142 107h-10 10z"/><path style="stroke: #fff; stroke-width: 3px;" class="st0" d="M98 82L46 0H0v35h10v72H0v35h54v-35H44V60l52 82h46v-35h-10V35h10V0H88v35h10v47z"/></svg>
<br>
<svg style="width: 4em;" id="Nebraska_N" data-name="Nebraska N" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 152 152" height="142" width="142"><defs><style>.cls-1{fill:#d00000;}.cls-2{fill:#231f20;}.cls-3{fill:#fff;}</style></defs><title>Nebraska_N_Stroke3x2</title><polygon class="cls-1" points="100.45 148 50 68.448 50 111.002 60 111.002 60 148 4 148 4 111.002 14 111.002 14 41 4 41 4 4 51.548 4 102 83.562 102 41 92 41 92 4 148 4 148 41 138 41 138 111.002 148 111.002 148 148 100.45 148"/><path class="cls-2" d="M158.011,5V40h-10v72h10v35h-46l-52-82v47h10v35h-54V112h10V40h-10V5h46l52,82.006h0V40h-10V5h54m2-2h-58V42h10V80.117L63.7,3.929,63.11,3h-49.1V42h10v68h-10v39h58V110h-10V71.892l48.311,76.179.589.929h49.1V110h-10V42h10V3Z" transform="translate(-11.011)"/><rect class="cls-1" x="5" y="111.002" width="10" height="2"/><path class="cls-2" d="M26.011,112h0m0-2h-12v2c0,.334.113,2,2.339,2h9.661v-4Z" transform="translate(-11.011)"/><rect class="cls-1" x="87.011" y="-2.549" width="2" height="97.104" transform="translate(-21.963 54.283) rotate(-32.379)"/><path class="cls-2" d="M62.01,5l52,82.005h0L62.01,5M63.7,3.929,60.321,6.071l52,82.006,3.378-2.142L63.7,3.929Z" transform="translate(-11.011)"/><rect class="cls-1" x="49" y="111.002" width="10" height="2"/><path class="cls-2" d="M70.011,112h0m0-2h-10v4h10v-4Z" transform="translate(-11.011)"/><rect class="cls-1" x="137" y="111.002" width="10" height="2"/><path class="cls-2" d="M158.011,112h0m0-2h-10v4h10v-4Z" transform="translate(-11.011)"/><polygon class="cls-1" points="99.626 149.5 51.5 73.613 51.5 109.502 61.5 109.502 61.5 149.5 2.5 149.5 2.5 109.502 12.5 109.502 12.5 42.5 2.5 42.5 2.5 2.5 52.374 2.5 100.5 78.396 100.5 42.5 90.5 42.5 90.5 2.5 149.5 2.5 149.5 42.5 139.5 42.5 139.5 109.502 149.5 109.502 149.5 149.5 99.626 149.5"/><path class="cls-1" d="M158.011,5V40h-10v72h10v35h-46l-52-82v47h10v35h-54V112h10V40h-10V5h46l52,82.006V40h-10V5h54m5-5h-64V45h10V69.784L66.232,2.322,64.76,0H11.011V45h10v62h-10v45h64V107h-10V82.224l42.778,67.454L109.262,152h53.749V107h-10V45h10V0Z" transform="translate(-11.011)"/><path class="cls-3" d="M158.011,5V40h-10v72h10v35h-46l-52-82v47h10v35h-54V112h10V40h-10V5h46l52,82.006V40h-10V5h54m3-3h-60V43h10V76.673L64.543,3.393,63.66,2H13.011V43h10v66h-10v41h60V109h-10V75.336l46.467,73.271.884,1.393h50.649V109h-10V43h10V2Z" transform="translate(-11.011)"/></svg>
-->
<!--
<img class="dcf-d-block dcf-absolute dcf-w-100%" style="top: 50%; transform: translateY(-50%); filter: blur(50px);" src="wdn/templates_5.3/images/170902-ne-asu-0878-lg-min.jpg" alt="#">
<img class="dcf-d-block dcf-absolute" style="right: 0; top: 0; height: 100%; clip-path: polygon(0px 0px, 100% 0px, 100% 100%, 42.3% 100%) !important;" src="wdn/templates_5.3/images/170902-ne-asu-0878-lg-min.jpg" alt="#">
-->
<div class="dcf-pb-8 dcf-measure">
<!-- <h2>Dreamcatcher mumblecore sartorial bitters. Artisan bitters photo booth, American Apparel Bushwick PBR&B salvia Echo Park.</h2> -->
<p class="dcf-lead">Before they sold out Truffaut whatever scenester cred forage Odd Future Schlitz tote bag. <a href="#">Cosby sweater</a> selvage whatever, Carles tofu meh vegan pickled Marfa. Thundercats kitsch post-ironic XOXO, +1 wolf kale chips Odd Future try-hard banjo selvage forage flexitarian ethnic.</p>
<p>Authentic hoodie fap literally umami, Marfa Intelligentsia tousled sartorial keytar. Cliche dreamcatcher four loko bicycle rights, direct trade bespoke Neutra aesthetic quinoa fanny pack.</p>
<div class="dcf-mb-6 dcf-ratio dcf-ratio-16x9 dcf-overflow-hidden unl-frame-quad">
<img
class="dcf-ratio-child dcf-obj-fit-cover"
sizes="(min-width: 41.956em) 43vw, 88vw"
srcset="wdn/templates_5.3/images/dev/150821-tunnel-325-sm-min.jpg 284w,
wdn/templates_5.3/images/dev/150821-tunnel-325-md-min.jpg 505w,
wdn/templates_5.3/images/dev/150821-tunnel-325-lg-min.jpg 898w,
wdn/templates_5.3/images/dev/150821-tunnel-325-xl-min.jpg 1596w"
src="data:image/gif;base64,R0lGODlhAQABAAAAADs="
alt="New students flow onto the field of Memorial Stadium during the annual Tunnel Walk.">
</div>
<!--
<header class="dcf-hgroup">
<h2 class="dcf-thing1">Dreamcatcher mumblecore sartorial bitters. Artisan bitters photo booth, American Apparel Bushwick PBR&B salvia Echo Park.</h2>
<p class="dcf-subhead">Roof party freegan lomo</p>
<time class="" datetime="2010-08-07 11:11:03-0400" pubdate>08-07-2010</time>
<p class="byline author vcard">By <span class="fn">Jane Doe</span></p>
</header>
<p class="dcf-lead">Before they sold out Truffaut whatever scenester cred forage Odd Future Schlitz tote bag. <a href="#">Cosby sweater</a> selvage whatever, Carles tofu meh vegan pickled Marfa. Thundercats kitsch post-ironic XOXO, +1 wolf kale chips Odd Future try-hard banjo selvage forage flexitarian ethnic.</p>
<p>Authentic hoodie fap literally umami, Marfa Intelligentsia tousled sartorial keytar. Cliche dreamcatcher four loko bicycle rights, direct trade bespoke Neutra aesthetic quinoa fanny pack.</p>
-->
<h2><!--<svg focusable="false" width="24" height="24" viewBox="0 0 24 24" style="width: 1em; height: 1em; margin-right: .382em;"><g fill="none" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10"><circle cx="9.5" cy="9.5" r="9"/><path d="M15.863 15.864L23.5 23.5M8 10.552v1.77L4 14M11 10.552v1.77L15 14"/><ellipse cx="9.5" cy="7.163" rx="3.197" ry="3.837"/><path d="M12.666 6.665c-.104.012-.246.006-.351.026-1.041.2-1.709-.177-2.283-1.181-.344.66-1.419 1.181-2.303 1.181-.436 0-.973-.109-1.348-.305"/></g><g><path fill="none" d="M0 0h24v24H0z"/></g></svg>--><!-- <small>Roof party freegan lomo</small> -->Vinyl bitters banjo, meggings forage Terry Richardson kogi pug beard aesthetic kitsch whatever selvage.</h2>
<p>Distillery XOXO Pinterest before they sold out single-origin coffee ugh, ethical small batch organic gentrify <abbr class="dcf-txt-sm">VHS</abbr>. Kale chips <a href="#">mixtape master</a> cleanse jean shorts Echo Park. Meggings Banksy umami, +1 you probably haven’t heard of them cliche gastropub keytar Neutra.</p>
<p>Authentic hoodie fap literally umami, Marfa Intelligentsia tousled sartorial keytar. Cliche dreamcatcher four loko bicycle rights, direct trade bespoke Neutra aesthetic quinoa fanny pack.</p>
<h3><!-- <svg focusable="false" width="24" height="24" viewBox="0 0 24 24" style="width: 1em; height: 1em; margin-right: .382em;"><g fill="none" stroke="#000" stroke-linejoin="round" stroke-miterlimit="10"><circle cx="11.5" cy="12.491" r="7.5"/><path stroke-linecap="round" d="M18.759 13.702c-1.271 1.533-4.044 2.596-7.259 2.596-3.21 0-5.979-1.061-7.253-2.59M4.171 11.341C5.408 9.762 8.224 8.657 11.5 8.657c3.209 0 5.978 1.061 7.252 2.59"/><path stroke-linecap="round" d="M10.298 19.704c-1.533-1.271-2.597-4.043-2.597-7.258 0-3.211 1.061-5.979 2.59-7.254M12.769 5.248c1.495 1.297 2.525 4.032 2.525 7.198 0 3.209-1.06 5.977-2.588 7.252"/><path d="M11.5 5V0"/><path stroke-linecap="round" d="M17.705 2.958l-1.137 1.646M22.363 10.94l-1.991.194M18.61 21.272l-1.311-1.509M4.235 21.239l1.31-1.511M.527 10.888l1.992.191M5.528 2.737l1.083 1.682"/><path d="M11.5 20V5M4 12.5h15"/></g><path fill="none" d="M0 0h24v24H0z"/></svg> --><!-- <small>Roof party freegan lomo</small> -->Letterpress photo booth direct trade meggings</h3>
<p>Church-key ennui gastropub. Sriracha Etsy XOXO street art, chillwave 8-bit hoodie <abbr class="dcf-txt-sm">VHS</abbr> blog Pitchfork authentic paleo ethical messenger bag. Raw denim Blue Bottle flannel Carles Williamsburg narwhal, cray drinking vinegar messenger bag gluten-free twee ugh.</p>
<p>Authentic hoodie fap literally umami, Marfa Intelligentsia tousled sartorial keytar. Cliche dreamcatcher four loko bicycle rights, direct trade bespoke Neutra aesthetic quinoa fanny pack.</p>
<h4><!-- <small>Roof party freegan lomo</small> -->Post-ironic Shoreditch slow-carb</h4>
<p>Tote bag beard chillwave seitan PBR single-origin coffee kogi hella Bushwick disrupt four loko. Aesthetic artisan post-ironic gluten-free, selfies keffiyeh plaid single-origin coffee.</p>
<p>Authentic hoodie fap literally umami, Marfa Intelligentsia tousled sartorial keytar. Cliche dreamcatcher four loko bicycle rights, direct trade bespoke Neutra aesthetic quinoa fanny pack.</p>
<h4><!-- <small>Roof party freegan lomo</small> -->Portland ugh Neutra, Schlitz pop-up cornhole biodiesel Etsy raw denim</h4>
<h5><!-- <small>Roof party freegan lomo</small> -->Portland ugh Neutra, Schlitz pop-up cornhole biodiesel Etsy raw denim</h5>
<p>Mlkshk fashion axe Pitchfork deep v dreamcatcher, Blue Bottle church-key photo booth literally asymmetrical four loko. Hoodie flexitarian +1, farm-to-table locavore selvage Marfa synth ennui polaroid occupy kitsch.</p>
<p>Artisan mumblecore Pinterest Shoreditch meggings viral. Austin <abbr class="dcf-txt-sm">VHS</abbr> street art cornhole Etsy tattooed. Tattooed iPhone 90’s keytar, XOXO Intelligentsia gastropub letterpress drinking vinegar cliche viral tote bag. Mumblecore seitan 8-bit dreamcatcher, fanny pack pickled scenester quinoa vinyl put a bird on it artisan literally.</p>
<ul>
<li>Church-key ennui gastropub.</li>
<li>Sriracha Etsy XOXO street art, chillwave 8-bit hoodie <a href="#"><abbr class="dcf-txt-sm">VHS</abbr> blog</a> Pitchfork authentic paleo ethical messenger bag.
<ol>
<li>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante venenatis dapibus posuere velit aliquet.</li>
<li>Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit. Etiam porta sem malesuada magna mollis euismod.</li>
<li>Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum.</li>
<li>Lorem ipsum dolor sit amet, <a href="#">consectetur adipiscing</a> elit. Integer posuere erat a ante venenatis dapibus posuere velit aliquet.</li>
<li>Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit. Etiam porta sem malesuada magna mollis euismod.</li>
<li>Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum.</li>
<li>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante venenatis dapibus posuere velit aliquet.</li>
<li>Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit. Etiam porta sem malesuada magna mollis euismod.</li>
<li>Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum.</li>
<li>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante venenatis dapibus posuere velit aliquet.</li>
<li>Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit. Etiam porta sem malesuada magna mollis euismod.</li>
<li>Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum.</li>
<li>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante venenatis dapibus posuere velit aliquet.</li>
<li>Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit. Etiam porta sem malesuada magna mollis euismod.</li>
<li>Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum.</li>
</ol>
</li>
<li>Raw denim Blue Bottle flannel Carles Williamsburg narwhal, cray drinking vinegar messenger bag gluten-free twee ugh.</li>
</ul>
<p>Distillery XOXO Pinterest before they sold out single-origin coffee ugh, ethical small batch organic gentrify <abbr class="dcf-txt-sm">VHS</abbr>. Kale chips mixtape master cleanse jean shorts Echo Park. Meggings Banksy umami, +1 you probably haven’t heard of them cliche gastropub keytar Neutra.</p>
<h6><!-- <small>Roof party freegan lomo</small> -->Carles tofu meh vegan pickled Marfa.</h6>
<p>Quinoa twee cardigan, lo-fi biodiesel try-hard Neutra pickled church-key pug scenester. Etsy direct trade fanny pack, fashion axe chia bespoke bitters Helvetica.</p>
</div>
<div class="dcf-pt-6 dcf-pb-6">
<h2 class="dcf-mt-6">Buttons</h2>
<a class="dcf-btn dcf-btn-primary" href="#" role="button">Link</a>
<button class="dcf-btn dcf-btn-primary" type="submit">Button</button>
<input class="dcf-btn dcf-btn-primary" type="button" value="Input">
<input class="dcf-btn dcf-btn-primary" type="submit" value="Submit">
<h3 class="dcf-mt-5 dcf-regular">Button Hierarchy</h3>
<button class="dcf-btn dcf-btn-primary dcf-mr-4" type="button">Primary Button</button>
<button class="dcf-btn dcf-btn-secondary dcf-mr-4" type="button">Secondary Button</button>
<button class="dcf-btn dcf-btn-tertiary" type="button">Tertiary Button</button>
</div>
<!-- Grunge -->
<!--
<div class="dcf-bleed unl-bg-lighter-cream" style="">
<div class="dcf-wrapper dcf-pb-10" style="padding-top: 10em">
<div class="dcf-grid-halves@sm dcf-col-gap-vw dcf-row-gap-4">
<div class="dcf-relative dcf-as-center">
<h2 class="dcf-absolute dcf-uppercase mask multiply" style="color: #d00000; font-size: 10em; right: -2em; top: -.75em; z-index: 999; filter: blur(0.25px); transform: rotate(-.5deg);">Events</h2>
<p>Drinking vinegar PBR street art letterpress. Swag squid photo booth you probably haven’t heard of them 3 wolf moon, umami occupy YOLO asymmetrical master cleanse cray polaroid before they sold out. Hoodie aesthetic tote bag, salvia Portland Blue Bottle craft beer fixie squid art party Intelligentsia seitan.</p>
<a class="dcf-btn dcf-btn-secondary" href="#" role="button">Do This Thing</a>
</div>
<div class="dcf-as-center">
<div class="dcf-ratio dcf-ratio-16x9 dcf-overflow-hidden unl-frame-quad">
<img class="dcf-ratio-child dcf-obj-fit-cover" src="wdn/templates_5.3/images/170902-ne-asu-0878-xl-min.jpg" alt="#" style="filter: grayscale(1);">
</div>
</div>
</div>
</div>
</div>
-->
<div class="dcf-bleed">
<div class="dcf-wrapper dcf-pt-10 dcf-pb-10">
<div class="dcf-grid-halves@sm dcf-col-gap-vw dcf-row-gap-4">
<div class="dcf-as-center">
<div class="dcf-d-flex dcf-flex-col">
<h2 class="dcf-2nd dcf-txt-h1 unl-heading-ornament">Cras Vestibulum <span class="unl-txt-outline-dark unl-txt-stripes-dark">Ligula</span> Nullam</h2>
<h3 class="dcf-1st dcf-txt-xs dcf-uppercase unl-ls-2 unl-dark-gray">Mattis Bibendum</h3>
</div>
<p>Drinking vinegar PBR street art letterpress. Swag squid photo booth you probably haven’t heard of them 3 wolf moon, umami occupy YOLO asymmetrical master cleanse cray polaroid before they sold out. Hoodie aesthetic tote bag, salvia Portland Blue Bottle craft beer fixie squid art party Intelligentsia seitan.</p>
<a class="dcf-btn dcf-btn-secondary" href="#" role="button">Do This Thing</a>
</div>
<div class="dcf-as-center">
<div class="dcf-ratio dcf-ratio-16x9 dcf-overflow-hidden unl-frame-quad">
<img
class="dcf-ratio-child dcf-obj-fit-cover"
sizes="(min-width: 41.956em) 43vw, 88vw"
srcset="wdn/templates_5.3/images/dev/150815-commencement-324-sm-min.jpg 284w,
wdn/templates_5.3/images/dev/150815-commencement-324-md-min.jpg 505w,
wdn/templates_5.3/images/dev/150815-commencement-324-lg-min.jpg 898w,
wdn/templates_5.3/images/dev/150815-commencement-324-xl-min.jpg 1596w"
src="data:image/gif;base64,R0lGODlhAQABAAAAADs="
alt="Nilmar Robledo Caicedo from Colombia shakes hands after receiving his masters degree in agricultural economics.">
</div>
</div>
</div>
</div>
</div>
<div class="dcf-bleed dcf-bt dcf-bb" style="">
<div class="dcf-wrapper">
<div class="dcf-relative dcf-grid dcf-col-gap-vw dcf-row-gap-4 dcf-pt-9 dcf-pb-9">
<div class="dcf-2nd unl-ftd-person-tsr-body">
<h2 class="dcf-absolute dcf-pin-top dcf-pin-left dcf-mb-0 dcf-txt-xs dcf-uppercase unl-ls-2 dcf-txt-vertical-lr unl-dark-gray">Featured Student</h2>
<h3 class="unl-heading-ornament">Kylie Tucker <small class="dcf-regular unl-ls-0 unl-dark-gray">Junior</small></h3>
<p>A student-powered fund created to expand sustainability programming at the University of Nebraska–Lincoln has set down its first roots. Through a project led by Tucker, a junior fisheries and wildlife major, a prototype green roof has been established on a balcony area at the Rec and Wellness Center on East Campus.</p>
<a class="dcf-btn dcf-btn-secondary" href="#" role="button">Meet Kylie</a>
</div>
<div class="dcf-1st unl-ftd-person-tsr-img">
<div class="dcf-ratio dcf-ratio-1x1 dcf-circle dcf-overflow-hidden unl-frame-circle">
<img class="dcf-ratio-child dcf-obj-fit-cover" src="https://via.placeholder.com/400x400" alt="Photo of Kylie Tucker">
</div>
</div>
</div>
</div>
</div>
<div class="dcf-bleed dcf-bb" style="">
<div class="dcf-wrapper">
<div class="dcf-relative dcf-grid dcf-col-gap-vw dcf-row-gap-4 dcf-pt-9 dcf-pb-9">
<div class="dcf-2nd unl-ftd-person-tsr-body">
<h2 class="dcf-absolute dcf-pin-top dcf-pin-left dcf-mb-0 dcf-txt-xs dcf-uppercase unl-ls-2 dcf-txt-vertical-lr unl-dark-gray">Featured Faculty</h2>
<h3 class="unl-heading-ornament">Valerie Jones</h3>
<p>Learn about digital and social media from Valerie Jones, an innovator in the advertising and public relations field.</p>
<a class="dcf-btn dcf-btn-secondary" href="#" role="button">See How Valerie Got There</a>
</div>
<div class="dcf-1st unl-ftd-person-tsr-img">
<div class="dcf-ratio dcf-ratio-1x1 dcf-circle dcf-overflow-hidden unl-frame-circle">
<img class="dcf-ratio-child dcf-obj-fit-cover" src="https://via.placeholder.com/400x400" alt="Photo of Valerie Jones">
</div>
</div>
</div>
</div>
</div>
<div class="dcf-bleed dcf-bb" style="">
<div class="dcf-wrapper">
<div class="dcf-relative dcf-grid dcf-col-gap-vw dcf-row-gap-4 dcf-pt-9 dcf-pb-9">
<div class="dcf-2nd unl-ftd-person-tsr-body">
<h2 class="dcf-absolute dcf-pin-top dcf-pin-left dcf-mb-0 dcf-txt-xs dcf-uppercase unl-ls-2 dcf-txt-vertical-lr unl-dark-gray">Featured Alumni</h2>
<h3 class="unl-heading-ornament">Eartha Jean Johnson <small class="dcf-regular unl-ls-0 unl-dark-gray"><abbr>JD</abbr>, 1994</small></h3>
<p>Eartha Johnson applied her law degree in a creative and unconventional way by forming LegalWatch, Inc., a legal staffing and training company aimed at advising other companies and their employees about how to avoid litigation through risk mitigation, diversity, ethics and employment law training. LegalWatch’s clients include Shell, Wal-Mart, Halliburton and Exxon. Johnson began LegalWatch after a successful career practicing commercial and environmental law for Exxon and working for the United States Department of Justice. Using the knowledge and information she gained through her legal practice, Johnson created classes that focused on helping companies avoid behaviors that can often force them into unnecessary settlements or lead to costly litigation and damaging headlines.</p>
<a class="dcf-btn dcf-btn-secondary" href="#" role="button">Meet Eartha</a>
</div>
<div class="dcf-1st unl-ftd-person-tsr-img">
<div class="dcf-ratio dcf-ratio-1x1 dcf-circle dcf-overflow-hidden unl-frame-circle">
<img class="dcf-ratio-child dcf-obj-fit-cover" src="https://via.placeholder.com/400x400" alt="Photo of Eartha Jean Johnson">
</div>
</div>
</div>
</div>
</div>
<!-- Staff Listing -->
<!--
<div class="dcf-relative dcf-pt-9 dcf-pb-9 dcf-bb">
<h2 class="dcf-absolute dcf-pin-top dcf-pin-left dcf-mb-0 dcf-txt-xs dcf-uppercase unl-ls-2 dcf-txt-vertical-lr unl-dark-gray">Dean’s Office Staff</h2>
<div class="dcf-grid dcf-col-gap-vw">
<ul class="dcf-relative dcf-grid-halves@md dcf-grid-thirds@xl dcf-col-gap-vw dcf-row-gap-6 unl-grid-1" role="list">
<li class="dcf-d-flex dcf-ai-center dcf-pb-0">
<div class="dcf-2nd dcf-flex-1">
<h3 class="dcf-mb-0 dcf-txt-h5"><a class="dcf-txt-decor-hover" href="#">Kathe Andersen</a></h3>
<div class="dcf-mt-1 dcf-txt-xs dcf-lh-3 unl-font-sans unl-dark-gray">Director of Communications and External Relations</div>
</div>
<div class="dcf-1st dcf-h-10 dcf-w-10 dcf-mr-4">
<div class="dcf-h-100% dcf-w-100% dcf-ratio dcf-ratio-1x1 dcf-overflow-hidden unl-frame-circle">
<img class="dcf-ratio-child dcf-obj-fit-cover" src="https://via.placeholder.com/400x400" alt="Portrait photo of Kathe Andersen">
</div>
</div>
</li>
<li class="dcf-d-flex dcf-ai-center dcf-pb-0">
<div class="dcf-2nd dcf-flex-1">
<h3 class="dcf-mb-0 dcf-txt-h5"><a class="dcf-txt-decor-hover" href="#">David Bagby</a></h3>
<div class="dcf-mt-1 dcf-txt-xs dcf-lh-3 unl-font-sans unl-dark-gray">Information Technology Services Manager</div>
</div>
<div class="dcf-1st dcf-h-10 dcf-w-10 dcf-mr-4">
<div class="dcf-h-100% dcf-w-100% dcf-ratio dcf-ratio-1x1 dcf-overflow-hidden unl-frame-circle">
<img class="dcf-ratio-child dcf-obj-fit-cover" src="https://via.placeholder.com/400x400" alt="Portrait photo of David Bagby">
</div>
</div>
</li>
<li class="dcf-d-flex dcf-ai-center dcf-pb-0">
<div class="dcf-2nd dcf-flex-1">
<h3 class="dcf-mb-0 dcf-txt-h5"><a class="dcf-txt-decor-hover" href="#">Allison Casey</a></h3>
<div class="dcf-mt-1 dcf-txt-xs dcf-lh-3 unl-font-sans unl-dark-gray">Administrative Technician</div>
</div>
<div class="dcf-1st dcf-h-10 dcf-w-10 dcf-mr-4">
<div class="dcf-h-100% dcf-w-100% dcf-ratio dcf-ratio-1x1 dcf-overflow-hidden unl-frame-circle">
<img class="dcf-ratio-child dcf-obj-fit-cover" src="https://via.placeholder.com/400x400" alt="Portrait photo of Allison Casey">
</div>
</div>
</li>
<li class="dcf-d-flex dcf-ai-center dcf-pb-0">
<div class="dcf-2nd dcf-flex-1">
<h3 class="dcf-mb-0 dcf-txt-h5"><a class="dcf-txt-decor-hover" href="#">Rachel Danay</a></h3>
<div class="dcf-mt-1 dcf-txt-xs dcf-lh-3 unl-font-sans unl-dark-gray">Assistant to the Dean</div>
</div>
<div class="dcf-1st dcf-h-10 dcf-w-10 dcf-mr-4">
<div class="dcf-h-100% dcf-w-100% dcf-ratio dcf-ratio-1x1 dcf-overflow-hidden unl-frame-circle">
<img class="dcf-ratio-child dcf-obj-fit-cover" src="https://via.placeholder.com/400x400" alt="Portrait photo of Rachel Danay">
</div>
</div>
</li>
<li class="dcf-d-flex dcf-ai-center dcf-pb-0">
<div class="dcf-2nd dcf-flex-1">
<h3 class="dcf-mb-0 dcf-txt-h5"><a class="dcf-txt-decor-hover" href="#">Sara Fedderson</a></h3>
<div class="dcf-mt-1 dcf-txt-xs dcf-lh-3 unl-font-sans unl-dark-gray">Assistant Director of Advising</div>
</div>
<div class="dcf-1st dcf-h-10 dcf-w-10 dcf-mr-4">
<div class="dcf-h-100% dcf-w-100% dcf-ratio dcf-ratio-1x1 dcf-overflow-hidden unl-frame-circle">
<img class="dcf-ratio-child dcf-obj-fit-cover" src="https://via.placeholder.com/400x400" alt="Portrait photo of Sara Fedderson">
</div>
</div>
</li>
<li class="dcf-d-flex dcf-ai-center dcf-pb-0">
<div class="dcf-2nd dcf-flex-1">
<h3 class="dcf-mb-0 dcf-txt-h5"><a class="dcf-txt-decor-hover" href="#">Matthew Knight</a></h3>
<div class="dcf-mt-1 dcf-txt-xs dcf-lh-3 unl-font-sans unl-dark-gray">Assistant Director of Recruitment</div>
</div>
<div class="dcf-1st dcf-h-10 dcf-w-10 dcf-mr-4">
<div class="dcf-h-100% dcf-w-100% dcf-ratio dcf-ratio-1x1 dcf-overflow-hidden unl-frame-circle">
<img class="dcf-ratio-child dcf-obj-fit-cover" src="https://via.placeholder.com/400x400" alt="Portrait photo of Matthew Knight">
</div>
</div>
</li>
<li class="dcf-d-flex dcf-ai-center dcf-pb-0">
<div class="dcf-2nd dcf-flex-1">
<h3 class="dcf-mb-0 dcf-txt-h5"><a class="dcf-txt-decor-hover" href="#">Joseph Morris</a></h3>
<div class="dcf-mt-1 dcf-txt-xs dcf-lh-3 unl-font-sans unl-dark-gray">Systems Coordinator</div>
</div>
<div class="dcf-1st dcf-h-10 dcf-w-10 dcf-mr-4">
<div class="dcf-h-100% dcf-w-100% dcf-ratio dcf-ratio-1x1 dcf-overflow-hidden unl-frame-circle">
<img class="dcf-ratio-child dcf-obj-fit-cover" src="https://via.placeholder.com/400x400" alt="Portrait photo of Joseph Morris">
</div>
</div>
</li>
<li class="dcf-d-flex dcf-ai-center dcf-pb-0">
<div class="dcf-2nd dcf-flex-1">
<h3 class="dcf-mb-0 dcf-txt-h5"><a class="dcf-txt-decor-hover" href="#">Michael Reinmiller</a></h3>
<div class="dcf-mt-1 dcf-txt-xs dcf-lh-3 unl-font-sans unl-dark-gray">Digital Arts Support Technician</div>
</div>
<div class="dcf-1st dcf-h-10 dcf-w-10 dcf-mr-4">
<div class="dcf-h-100% dcf-w-100% dcf-ratio dcf-ratio-1x1 dcf-overflow-hidden unl-frame-circle">
<img class="dcf-ratio-child dcf-obj-fit-cover" src="https://via.placeholder.com/400x400" alt="Portrait photo of Michael Reinmiller">
</div>
</div>
</li>
</ul>
</div>
</div>
-->
<div class="dcf-pt-9 dcf-pb-10">
<div class="dcf-grid dcf-col-gap-vw dcf-row-gap-6">
<div class="dcf-2nd dcf-col-67%-end@sm dcf-as-center">
<h2 class="dcf-mb-0 dcf-txt-h4"><a class="dcf-txt-decor-hover" href="#">Charles O’Connor</a></h2>
<div class="dcf-mt-1 dcf-mb-5 dcf-lh-3 dcf-italic unl-dark-gray">
Dean
</div>
<p>Charles O’Connor is the Hixson-Lied Endowed Dean of the Hixson-Lied College of Fine and Performing Arts at the University of Nebraska–Lincoln. He returns to Lincoln after nine years, having started in 1993 as a faculty member in the Department of Theatre Arts, now the Johnny Carson School of Theatre and Film.</p>
<a class="dcf-btn dcf-btn-secondary" href="#" role="button">Full Bio</a>
</div>
<div class="dcf-1st dcf-col-50%-start dcf-col-33%-start@sm">
<div class="dcf-ratio dcf-ratio-1x1 dcf-circle dcf-overflow-hidden unl-frame-circle">
<img class="dcf-ratio-child dcf-obj-fit-cover" src="https://via.placeholder.com/400x400" alt="Portrait photo of Charles O’Connor">
</div>
</div>
</div>
</div>
<div class="dcf-pb-8">
<h2 class="dcf-d-flex dcf-ai-center dcf-mb-6 dcf-txt-xs dcf-uppercase unl-ls-2 unl-stripes unl-dark-gray">Department and School Faculty Listings</h2>
<ul role="list">
<li><a href="#">School of Art, Art History & Design Faculty</a></li>
<li><a href="#">Glenn Korff School of Music Faculty</a></li>
<li><a href="#">Johnny Carson School of Theatre & Film Faculty</a></li>
</ul>
</div>
<!-- Staff Listing -->
<div class="dcf-pb-9 dcf-bb">
<h2 class="dcf-d-flex dcf-ai-center dcf-mb-6 dcf-txt-xs dcf-uppercase unl-ls-2 unl-stripes unl-dark-gray">Dean’s Office Staff</h2>
<ul class="dcf-grid-halves dcf-grid-thirds@sm dcf-grid-fourths@md dcf-col-gap-vw dcf-row-gap-6" role="list">
<li class="dcf-d-flex dcf-flex-col dcf-pb-0">
<div class="dcf-2nd dcf-txt-center">
<h3 class="dcf-mb-0 dcf-txt-h6"><a class="dcf-txt-decor-hover" href="#">Kathe Andersen</a></h3>
<div class="dcf-mt-1 dcf-txt-xs dcf-lh-3 dcf-italic unl-dark-gray">Director of Communications and External Relations</div>
</div>
<div class="dcf-1st dcf-mb-3">
<div class="dcf-ratio dcf-ratio-1x1 dcf-circle dcf-overflow-hidden unl-frame-circle">
<img class="dcf-ratio-child dcf-obj-fit-cover" src="https://via.placeholder.com/400x400" alt="Portrait photo of Kathe Andersen">
</div>
</div>
</li>
<li class="dcf-d-flex dcf-flex-col dcf-pb-0">
<div class="dcf-2nd dcf-txt-center">
<h3 class="dcf-mb-0 dcf-txt-h6"><a class="dcf-txt-decor-hover" href="#">David Bagby</a></h3>
<div class="dcf-mt-1 dcf-txt-xs dcf-lh-3 dcf-italic unl-dark-gray">Information Technology Services Manager</div>
</div>
<div class="dcf-1st dcf-mb-3">
<div class="dcf-ratio dcf-ratio-1x1 dcf-circle dcf-overflow-hidden unl-frame-circle">
<img class="dcf-ratio-child dcf-obj-fit-cover" src="https://via.placeholder.com/400x400" alt="Portrait photo of David Bagby">
</div>
</div>
</li>
<li class="dcf-d-flex dcf-flex-col dcf-pb-0">
<div class="dcf-2nd dcf-txt-center">
<h3 class="dcf-mb-0 dcf-txt-h6"><a class="dcf-txt-decor-hover" href="#">Allison Casey</a></h3>
<div class="dcf-mt-1 dcf-txt-xs dcf-lh-3 dcf-italic unl-dark-gray">Administrative Technician</div>
</div>
<div class="dcf-1st dcf-mb-3">
<div class="dcf-ratio dcf-ratio-1x1 dcf-circle dcf-overflow-hidden unl-frame-circle">
<img class="dcf-ratio-child dcf-obj-fit-cover" src="https://via.placeholder.com/400x400" alt="Portrait photo of Allison Casey">
</div>
</div>
</li>
<li class="dcf-d-flex dcf-flex-col dcf-pb-0">
<div class="dcf-2nd dcf-txt-center">
<h3 class="dcf-mb-0 dcf-txt-h6"><a class="dcf-txt-decor-hover" href="#">Rachel Danay</a></h3>
<div class="dcf-mt-1 dcf-txt-xs dcf-lh-3 dcf-italic unl-dark-gray">Assistant to the Dean</div>
</div>
<div class="dcf-1st dcf-mb-3">
<div class="dcf-ratio dcf-ratio-1x1 dcf-circle dcf-overflow-hidden unl-frame-circle">
<img class="dcf-ratio-child dcf-obj-fit-cover" src="https://via.placeholder.com/400x400" alt="Portrait photo of Rachel Danay">
</div>
</div>
</li>
<li class="dcf-d-flex dcf-flex-col dcf-pb-0">
<div class="dcf-2nd dcf-txt-center">
<h3 class="dcf-mb-0 dcf-txt-h6"><a class="dcf-txt-decor-hover" href="#">Sara Fedderson</a></h3>
<div class="dcf-mt-1 dcf-txt-xs dcf-lh-3 dcf-italic unl-dark-gray">Assistant Director of Advising</div>
</div>
<div class="dcf-1st dcf-mb-3">
<div class="dcf-ratio dcf-ratio-1x1 dcf-circle dcf-overflow-hidden unl-frame-circle">
<img class="dcf-ratio-child dcf-obj-fit-cover" src="https://via.placeholder.com/400x400" alt="Portrait photo of Sara Fedderson">
</div>
</div>
</li>
<li class="dcf-d-flex dcf-flex-col dcf-pb-0">
<div class="dcf-2nd dcf-txt-center">
<h3 class="dcf-mb-0 dcf-txt-h6"><a class="dcf-txt-decor-hover" href="#">Matthew Knight</a></h3>
<div class="dcf-mt-1 dcf-txt-xs dcf-lh-3 dcf-italic unl-dark-gray">Assistant Director of Recruitment</div>
</div>
<div class="dcf-1st dcf-mb-3">
<div class="dcf-ratio dcf-ratio-1x1 dcf-circle dcf-overflow-hidden unl-frame-circle">
<img class="dcf-ratio-child dcf-obj-fit-cover" src="https://via.placeholder.com/400x400" alt="Portrait photo of Matthew Knight">
</div>
</div>
</li>
<li class="dcf-d-flex dcf-flex-col dcf-pb-0">
<div class="dcf-2nd dcf-txt-center">
<h3 class="dcf-mb-0 dcf-txt-h6"><a class="dcf-txt-decor-hover" href="#">Joseph Morris</a></h3>
<div class="dcf-mt-1 dcf-txt-xs dcf-lh-3 dcf-italic unl-dark-gray">Systems Coordinator</div>
</div>
<div class="dcf-1st dcf-mb-3">
<div class="dcf-ratio dcf-ratio-1x1 dcf-circle dcf-overflow-hidden unl-frame-circle">
<img class="dcf-ratio-child dcf-obj-fit-cover" src="https://via.placeholder.com/400x400" alt="Portrait photo of Joseph Morris">
</div>
</div>
</li>
<li class="dcf-d-flex dcf-flex-col dcf-pb-0">
<div class="dcf-2nd dcf-txt-center">
<h3 class="dcf-mb-0 dcf-txt-h6"><a class="dcf-txt-decor-hover" href="#">Michael Reinmiller</a></h3>
<div class="dcf-mt-1 dcf-txt-xs dcf-lh-3 dcf-italic unl-dark-gray">Digital Arts Support Technician</div>
</div>
<div class="dcf-1st dcf-mb-3">
<div class="dcf-ratio dcf-ratio-1x1 dcf-circle dcf-overflow-hidden unl-frame-circle">
<img class="dcf-ratio-child dcf-obj-fit-cover" src="https://via.placeholder.com/400x400" alt="Portrait photo of Michael Reinmiller">
</div>
</div>
</li>
</ul>
</div>
<!-- <div class="dcf-bleed" style="background-image: linear-gradient(to bottom, #fff, #fff 34%, #eee 34%, #eee);"> -->
<div class="dcf-bleed">
<div class="dcf-wrapper dcf-pt-10 dcf-pb-10">
<div class="dcf-grid-halves@sm dcf-col-gap-vw dcf-row-gap-4">
<div class="dcf-as-center">
<h2>Cras Vestibulum <span class="unl-txt-outline-dark">Ligula</span> Nullam</h2>
<p>Drinking vinegar PBR street art letterpress. Swag squid photo booth you probably haven’t heard of them 3 wolf moon, umami occupy YOLO asymmetrical master cleanse cray polaroid before they sold out. Hoodie aesthetic tote bag, salvia Portland Blue Bottle craft beer fixie squid art party Intelligentsia seitan.</p>
</div>
<div class="dcf-as-center">
<div class="dcf-ratio dcf-ratio-16x9 dcf-overflow-hidden unl-frame-quad">
<img
class="dcf-ratio-child dcf-obj-fit-cover"
sizes="(min-width: 41.956em) 43vw, 88vw"
srcset="wdn/templates_5.3/images/dev/140903-life-498-sm-min.jpg 284w,
wdn/templates_5.3/images/dev/140903-life-498-md-min.jpg 505w,
wdn/templates_5.3/images/dev/140903-life-498-lg-min.jpg 898w,
wdn/templates_5.3/images/dev/140903-life-498-xl-min.jpg 1596w"
src="data:image/gif;base64,R0lGODlhAQABAAAAADs="
alt="Students in LIFE 120 L Fundamentals of Biology 1 laboratory in Brace Hall.">
</div>
</div>
</div>
</div>
</div>
<!-- text wrap, clip circle -->
<div class="dcf-bleed unl-bg-stripes-dark">
<div class="dcf-wrapper dcf-pt-10 dcf-pb-10">
<h2 class="dcf-txt-h4">Malesuada Pellentesque</h2>
<div class="dcf-float-left dcf-h-10 dcf-w-10 dcf-mt-1 dcf-mr-4 dcf-mb-4 dcf-ratio dcf-ratio-1x1 dcf-circle dcf-overflow-hidden unl-clip-circle">
<img
class="dcf-ratio-child dcf-obj-fit-cover"
sizes="(min-width: 41.956em) 43vw, 88vw"
srcset="wdn/templates_5.3/images/dev/160813-commencement-563-sm-min.jpg 284w,
wdn/templates_5.3/images/dev/160813-commencement-563-md-min.jpg 505w,
wdn/templates_5.3/images/dev/160813-commencement-563-lg-min.jpg 898w,
wdn/templates_5.3/images/dev/160813-commencement-563-xl-min.jpg 1596w"
src="data:image/gif;base64,R0lGODlhAQABAAAAADs="
alt="Husker grad holds up her diploma in celebration during the summer all-university commencement ceremony at Pinnacle Bank Arena.">
</div>
<p>Drinking vinegar PBR street art letterpress. Swag squid photo booth you probably haven’t heard of them 3 wolf moon, umami occupy YOLO asymmetrical master cleanse cray polaroid before they sold out. Hoodie aesthetic tote bag, salvia Portland Blue Bottle craft beer fixie squid art party Intelligentsia seitan.</p>
</div>
</div>
<!-- large scarlet stripe -->
<!--
<div class="dcf-bleed unl-bg-scarlet-stripe">
<div class="dcf-wrapper dcf-pt-10 dcf-pb-10">
<div class="dcf-grid-halves@sm dcf-col-gap-vw dcf-row-gap-8">
<div class="dcf-as-center">
<h2 class="dcf-txt-h4">Malesuada Pellentesque</h2>
<p>Drinking vinegar PBR street art letterpress. Swag squid photo booth you probably haven’t heard of them 3 wolf moon, umami occupy YOLO asymmetrical master cleanse cray polaroid before they sold out. Hoodie aesthetic tote bag, salvia Portland Blue Bottle craft beer fixie squid art party Intelligentsia seitan.</p>
</div>
<div class="dcf-ratio dcf-ratio-16x9 dcf-overflow-hidden unl-frame-quad">
<img class="dcf-ratio-child dcf-obj-fit-cover" src="https://via.placeholder.com/400x400" alt="#">
</div>
</div>
</div>
</div>
-->
<!-- large cream stripe -->
<!--
<div class="dcf-bleed unl-bg-cream-stripe">
<div class="dcf-wrapper dcf-pt-10 dcf-pb-10">
<div class="dcf-grid-halves@sm dcf-col-gap-vw dcf-row-gap-8">
<div class="dcf-as-center">
<h2 class="dcf-txt-h4">Malesuada Pellentesque</h2>
<p>Drinking vinegar PBR street art letterpress. Swag squid photo booth you probably haven’t heard of them 3 wolf moon, umami occupy YOLO asymmetrical master cleanse cray polaroid before they sold out. Hoodie aesthetic tote bag, salvia Portland Blue Bottle craft beer fixie squid art party Intelligentsia seitan.</p>
</div>
<div class="dcf-ratio dcf-ratio-16x9 dcf-overflow-hidden unl-frame-quad">
<img class="dcf-ratio-child dcf-obj-fit-cover" src="https://via.placeholder.com/400x400" alt="#">
</div>
</div>
</div>
</div>
-->
<!--
<div class="dcf-bleed">
<div class="dcf-wrapper dcf-pt-8 dcf-pb-8">
<div class="dcf-grid-halves@sm dcf-col-gap-vw dcf-row-gap-8" style="background-image: linear-gradient(57.7deg, #eee 50%, #ddd 50%);">
<div class="dcf-pt-7 dcf-pr-9 dcf-pb-7 dcf-pl-7">
<h2 class="dcf-txt-h4">Malesuada Pellentesque</h2>
<p class="dcf-mb-0">Drinking vinegar PBR street art letterpress. Swag squid photo booth you probably haven’t heard of them 3 wolf moon, umami occupy YOLO asymmetrical master cleanse cray polaroid before they sold out.</p>
</div>
<div class="dcf-pt-7 dcf-pr-7 dcf-pb-7 dcf-pl-9">
<h2 class="dcf-txt-h4">Malesuada Pellentesque</h2>
<p class="dcf-mb-0">Drinking vinegar PBR street art letterpress. Swag squid photo booth you probably haven’t heard of them 3 wolf moon, umami occupy YOLO asymmetrical master cleanse cray polaroid before they sold out.</p>
</div>
</div>
</div>
</div>
-->
<!--
<div class="dcf-bleed">
<div class="dcf-wrapper dcf-pt-10 dcf-pb-10">
<div class="dcf-grid-halves@sm dcf-d-grid-fourths@lg dcf-col-gap-vw dcf-row-gap-8">
<a class="dcf-d-flex dcf-flex-wrap" href="#">
<div class="dcf-2nd">
<h3 class="dcf-txt-h5">Nulla vitae elit libero a pharetra augue</h3>
</div>
<div class="dcf-1st dcf-w-100% dcf-mb-2 dcf-ratio dcf-ratio-16x9 dcf-overflow-hidden unl-frame-quad">
<img class="dcf-ratio-child dcf-obj-fit-cover" src="https://via.placeholder.com/400x400" alt="#">
</div>
</a>
<a class="dcf-d-flex dcf-flex-wrap" href="#">
<div class="dcf-2nd">
<h3 class="dcf-txt-h5">Cras justo odio dapibus ac facilisis in egestas eget quam</h3>
</div>
<div class="dcf-1st dcf-w-100% dcf-mb-2 dcf-ratio dcf-ratio-16x9 dcf-overflow-hidden unl-frame-quad">
<img class="dcf-ratio-child dcf-obj-fit-cover" src="https://via.placeholder.com/400x400" alt="#">
</div>
</a>
<a class="dcf-d-flex dcf-flex-wrap" href="#">
<div class="dcf-2nd">
<h3 class="dcf-txt-h5">Nullam id dolor id nibh ultricies vehicula ut id elit</h3>
</div>
<div class="dcf-1st dcf-w-100% dcf-mb-2 dcf-ratio dcf-ratio-16x9 dcf-overflow-hidden unl-frame-quad">
<img class="dcf-ratio-child dcf-obj-fit-cover" src="https://via.placeholder.com/400x400" alt="#">
</div>
</a>
<a class="dcf-d-flex dcf-flex-wrap" href="#">
<div class="dcf-2nd">
<h3 class="dcf-txt-h5">Aenean lacinia bibendum nulla sed consectetur</h3>
</div>
<div class="dcf-1st dcf-w-100% dcf-mb-2 dcf-ratio dcf-ratio-16x9 dcf-overflow-hidden unl-frame-quad">
<img class="dcf-ratio-child dcf-obj-fit-cover" src="https://via.placeholder.com/400x400" alt="#">
</div>
</a>
</div>
</div>
</div>
-->
<div class="dcf-bleed unl-bg-light-gray">
<div class="dcf-wrapper dcf-pt-10 dcf-pb-10">
<div class="dcf-grid-halves@sm dcf-d-grid-fourths@lg dcf-col-gap-4 dcf-row-gap-4">
<div class="unl-bg-cream dcf-relative unl-frame-quad">
<div class="dcf-card-block">
<svg class="dcf-mb-1 dcf-h-7 dcf-w-7" role="img" aria-labelledby="title-icon-globe-2 desc-icon-globe-2" focusable="false" height="16" width="16" viewBox="0 0 24 24">
<title id="title-icon-globe-2">globe icon</title>
<desc id="desc-icon-globe-2">illustration of a globe</desc>
<path d="M21.14 4.236c-.47 1.332-1.426 3.465-2.916 4.211a.503.503 0 0 1-.345.037c-1.057-.263-2.127.127-2.674.439.23.309.487.846.733 1.774.213.075.628-.038.837-.144a.499.499 0 0 1 .578.094c1.213 1.213-.359 2.847-1.299 3.825-.166.172-.378.392-.496.536.04.037.087.079.124.11.228.199.541.471.557.902.01.287-.12.567-.386.834a5.155 5.155 0 0 1-1.367.981C14.343 19.535 13.09 20.5 11 20.5c-.976 0-2-2.493-2-3 0-.368.16-.69.303-.974.096-.193.197-.394.197-.526-.023-.171-.43-.721-.854-1.146A.502.502 0 0 1 8.5 14.5c0-.429-.077-.72-.229-.863-.252-.237-.849-.203-1.478-.167-.259.014-.526.03-.793.03-1.582 0-2-1.635-2-2.5 0-.16.033-3.917 2.901-4.49 1.308-.262 2.19-.185 2.703.236.181.148.29.322.346.484.526.389 1.47.168 2.309-.026.277-.065.546-.127.795-.165.093-.845.096-1.663.009-2.018-.613.257-1.222.255-1.698-.009-.493-.274-.8-.795-.862-1.467C10.369 2.107 13.144.989 15.05.393A12 12 0 0 0 12 0C5.383 0 0 5.383 0 12s5.383 12 12 12c6.616 0 12-5.383 12-12 0-2.958-1.079-5.668-2.86-7.764z"/>
</svg>
<h3 class="dcf-txt-h4 dcf-regular">Malesuada Pellentesque</h3>
<p>Nullam quis risus eget urna mollis ornare vel eu leo. Etiam porta sem malesuada magna mollis euismod.</p>
<a class="" href="#">Call to Action</a>
</div>
</div>
<div class="unl-bg-cream dcf-relative unl-frame-quad">
<div class="dcf-card-block">
<svg class="dcf-mb-1 dcf-h-7 dcf-w-7" role="img" aria-labelledby="title-icon-science-atom-1 desc-icon-science-atom-1" focusable="false" height="16" width="16" viewBox="0 0 24 24">
<title id="title-icon-science-atom-1">science atom icon</title>
<desc id="desc-icon-science-atom-1">illustration of an atom</desc>
<path d="M14.656 16.235c.073-.44.133-.892.183-1.35-.189.137-.374.274-.571.41a26.362 26.362 0 0 1-4.588 2.538c.084.334.17.662.268.968a27.042 27.042 0 0 0 4.708-2.566zM5.019 18.999c-.709 0-1.646-.133-2.081-.766-.549-.798-.193-2.243.974-3.967.556-.821 1.27-1.658 2.097-2.484.003-.48.022-.955.047-1.428-1.199 1.101-2.219 2.239-2.972 3.352-1.431 2.113-1.775 3.922-.97 5.094.539.785 1.544 1.199 2.905 1.199.63 0 1.331-.092 2.081-.26-.1-.309-.185-.637-.273-.966-.651.143-1.263.226-1.808.226zM4.481 10.493c-1.59-2.051-2.156-3.837-1.544-4.728C3.372 5.133 4.308 5 5.017 5c1.33 0 3.026.455 4.838 1.242.352-.218.705-.426 1.057-.624C8.723 4.59 6.637 4.001 5.018 4.001c-1.36 0-2.365.414-2.904 1.198-.944 1.374-.223 3.626 1.674 6.027.22-.245.453-.489.693-.733zM18.166 10.561a28.053 28.053 0 0 0-3.332-2.68c-.253-.175-.51-.333-.765-.496-.351.162-.702.317-1.057.505.42.257.839.529 1.255.816a27.038 27.038 0 0 1 3.22 2.59c.24-.247.465-.49.679-.735z"/><path d="M7.552 6.456c-.339 1.593-.533 3.402-.547 5.338l.192.182c.258.243.543.474.816.71C8.009 12.459 8 12.233 8 12c0-1.941.191-3.702.508-5.223a14.922 14.922 0 0 0-.956-.321zM5.835 13.439a28.157 28.157 0 0 0 3.332 2.681c.255.175.513.335.771.5.35-.162.698-.322 1.052-.509-.421-.258-.84-.53-1.256-.815a26.815 26.815 0 0 1-3.223-2.594c-.239.247-.461.492-.676.737zM19.518 13.506c1.592 2.051 2.158 3.837 1.546 4.727-.435.633-1.372.766-2.081.766-1.33 0-3.025-.455-4.838-1.242-.355.22-.712.419-1.068.619 2.194 1.033 4.285 1.623 5.906 1.623 1.361 0 2.366-.414 2.905-1.199.944-1.372.224-3.623-1.672-6.023-.22.242-.459.485-.698.729zM12 23c-1.375 0-2.859-2.393-3.57-6.183a29.027 29.027 0 0 1-1.155-.857C7.942 20.684 9.777 24 12 24c1.422 0 2.686-1.359 3.588-3.573a19.38 19.38 0 0 1-.955-.317C13.879 21.935 12.915 23 12 23zM14.049 5.201a27.065 27.065 0 0 0-4.701 2.563c-.056.328-.105.663-.147 1.001-.01.116-.022.231-.035.345.188-.135.374-.272.567-.405a26.379 26.379 0 0 1 4.589-2.54 15.858 15.858 0 0 0-.273-.964z"/>
<circle cx="12" cy="12" r="2.5"/>
<path d="M18.983 5.001c.709 0 1.646.133 2.08.765.776 1.13-.363 3.7-3.068 6.427v.021c-.001.154-.011.305-.014.457l.012.001c-.003.14-.015.274-.024.411-.006.186-.007.374-.017.557 3.506-3.225 5.192-6.611 3.936-8.439-.539-.784-1.544-1.198-2.904-1.198-.632 0-1.335.092-2.088.262.101.311.194.631.282.963.649-.144 1.26-.227 1.805-.227zM16.447 17.552c.34-1.596.534-3.408.548-5.346l-.194-.184c-.258-.242-.541-.474-.814-.708.004.227.013.454.013.686 0 1.945-.192 3.709-.51 5.231.327.122.646.226.957.321zM12 1.001c1.374 0 2.858 2.391 3.569 6.181.142.099.273.205.411.307l.011-.016c.253.183.489.375.733.563C16.057 3.315 14.221.001 12 .001c-1.424 0-2.689 1.363-3.592 3.581.315.095.633.196.957.313.754-1.828 1.719-2.894 2.635-2.894z"/>
</svg>
<h3 class="dcf-txt-h4 dcf-regular">Adipiscing Risus</h3>
<p>Nullam id dolor id nibh ultricies vehicula ut id elit. Sed posuere consectetur est at lobortis.</p>
<a class="" href="#">Call to Action</a>
</div>
</div>
<div class="unl-bg-cream dcf-relative unl-frame-quad">
<div class="dcf-card-block">
<svg class="dcf-mb-1 dcf-h-7 dcf-w-7" role="img" aria-labelledby="title-icon-badge-star desc-icon-badge-star" focusable="false" height="16" width="16" viewBox="0 0 24 24">
<title id="title-icon-badge-star">badge star icon</title>
<desc id="desc-icon-badge-star">illustration of a flag with a star</desc>
<path d="M22 4c-.651 0-1.201.419-1.408 1h-1.936L12.284.589a.5.5 0 0 0-.568 0L5.344 5H3.408C3.201 4.419 2.651 4 2 4 1.173 4 .5 4.673.5 5.5S1.173 7 2 7c.651 0 1.201-.418 1.408-1H5v11.5a.5.5 0 0 0 .177.382l6.5 5.5a.505.505 0 0 0 .646 0l6.5-5.5A.503.503 0 0 0 19 17.5V6h1.592a1.496 1.496 0 0 0 2.908-.5c0-.827-.673-1.5-1.5-1.5zM12 1.608L16.899 5H7.101L12 1.608zm4.861 10.294l-2.531 1.866.966 2.989a.5.5 0 0 1-.769.559L12 15.485l-2.527 1.831a.5.5 0 0 1-.769-.559l.966-2.989-2.531-1.866A.5.5 0 0 1 7.436 11h3.124l.966-2.972c.135-.411.816-.411.951 0L13.44 11h3.124a.5.5 0 0 1 .297.902z"/>
</svg>
<h3 class="dcf-txt-h4 dcf-regular">Porta Condimentum</h3>
<p>Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Maecenas faucibus mollis interdum.</p>
<a class="" href="#">Call to Action</a>
</div>
</div>
<div class="unl-bg-cream dcf-relative unl-frame-quad">
<div class="dcf-card-block">
<svg class="dcf-mb-1 dcf-h-7 dcf-w-7" role="img" aria-labelledby="title-icon-graduate desc-icon-graduate" focusable="false" height="16" width="16" viewBox="0 0 24 24">
<title id="title-icon-graduate">graduate icon</title>
<desc id="desc-icon-graduate">illustration of person wearing a graduation cap and gown</desc>
<path d="M.419 2.994l2.081.361v3.092l-1.489 6.948A.5.5 0 0 0 1.5 14h3a.5.5 0 0 0 .489-.604L3.5 6.447V3.529c4.096.711.06.011 8.454 1.471h.093l11.5-2.003a.501.501 0 0 0 .45-.491v-.012a.5.5 0 0 0-.415-.487L12.09.009a.507.507 0 0 0-.178 0L.454 2.004a.5.5 0 0 0-.45.491v.011c.002.24.178.446.415.488z"/>
<path d="M10 8.501c-.851-.009-1.5.121-1.5 1.002a.5.5 0 0 0 1 .009c.095-.012.906-.012 1 0a.5.5 0 0 0 1-.009c0-.886-.651-1.006-1.5-1.002zM14 8.501c-.851-.009-1.5.121-1.5 1.002a.5.5 0 0 0 1 .009c.095-.012.906-.012 1 0a.5.5 0 0 0 1-.009c0-.886-.651-1.006-1.5-1.002zM12 6c-.086 0-5.501-.935-5.501-.935 0 .304-.049.593.147.788C6.713 5.921 8.335 7.5 12 7.5s5.286-1.579 5.354-1.647c.194-.195.146-.484.146-.788 0 0-5.414.935-5.5.935z"/>
<path d="M21.037 16.773c-6.449-1.78 1.022.279-5.405-1.492.95-.854 1.714-1.995 1.847-3.359.685-.234 1.146-.971 1.146-1.922 0-.941-.451-1.673-1.125-1.914V7.004c-.249.171-.579.37-1 .568V8.5a.5.5 0 0 0 .5.5c.495 0 .625.654.625 1s-.13 1-.625 1a.5.5 0 0 0-.5.5c0 2.6-3.158 4.5-4.5 4.5s-4.5-1.9-4.5-4.5A.5.5 0 0 0 7 11c-.495 0-.625-.654-.625-1S6.505 9 7 9a.5.5 0 0 0 .5-.5v-.928a7.145 7.145 0 0 1-1-.568v1.08c-.674.241-1.125.975-1.125 1.916 0 .951.46 1.688 1.146 1.922.133 1.363.896 2.504 1.844 3.356L2.92 16.787A4.52 4.52 0 0 0 0 21v2.5a.5.5 0 0 0 .5.5h23a.5.5 0 0 0 .5-.5V21c0-1.865-1.173-3.559-2.963-4.227zM12 20.793l-4.288-4.287c.46-.11 1.1-.241 1.863-.342.908.54 1.82.836 2.425.836.606 0 1.518-.297 2.427-.838.763.101 1.404.229 1.866.338L12 20.793z"/>
</svg>
<h3 class="dcf-txt-h4 dcf-regular">Ligula Sem</h3>
<p>Aenean lacinia bibendum nulla sed consectetur. Cras justo odio, dapibus ac facilisis in, egestas eget quam.</p>
<a class="" href="#">Call to Action</a>
</div>
</div>
</div>
</div>
</div>
<div class="dcf-bleed">
<div class="dcf-wrapper">
<div class="dcf-grid dcf-relative dcf-col-gap-vw dcf-row-gap-8 dcf-pt-9 dcf-pb-9">
<h2 class="dcf-absolute dcf-pin-top dcf-pin-left dcf-mb-0 dcf-txt-xs dcf-uppercase unl-ls-2 dcf-txt-vertical-lr unl-dark-gray">Upcoming Events</h2>
<ul class="dcf-d-grid dcf-col-gap-vw dcf-row-gap-6 dcf-mb-0 unl-events-listing" role="list">
<li class="dcf-media dcf-event" itemscope itemtype="http://schema.org/Event">
<div class="dcf-media-body dcf-1st dcf-d-flex dcf-flex-col">
<div class="dcf-2nd dcf-pl-3 dcf-lh-3 unl-font-sans">
<a class="dcf-d-block dcf-txt-lg dcf-txt-decor-hover dcf-bold" href="//events.unl.edu/2017/09/25/120871/" itemprop="url">
<span itemprop="name">The Modern-Day Sales Manager Executive Program Certificate</span>
</a>
<div class="dcf-pt-1 dcf-txt-xs" itemprop="location" itemscope itemtype="http://schema.org/Place">
<a class="dcf-txt-decor-none" href="http://maps.unl.edu/NCBA" itemprop="url">
<span itemprop="name">College of Business (NEW)</span>
</a>
</div>
</div>
<div class="dcf-1st dcf-d-flex dcf-mb-4 dcf-lh-1">
<time class="dcf-d-flex dcf-ai-center" datetime="2017-09-25" itemprop="startDate">
<span class="dcf-pr-1 dcf-txt-xs dcf-uppercase dcf-bold unl-ls-2">Sep</span>
<span class="dcf-txt-h4 dcf-bold">25</span>
</time>
</div>
</div>
<div class="dcf-2nd dcf-ml-5 dcf-media-object dcf-event-img dcf-ratio dcf-ratio-1x1">
<img
class="dcf-ratio-child dcf-obj-fit-cover"
sizes="(min-width: 55.927em) 10vw, 18vw"
srcset="wdn/templates_5.3/images/dev/111024-autumn-018-sm-min.jpg 284w,
wdn/templates_5.3/images/dev/111024-autumn-018-md-min.jpg 505w"
src="data:image/gif;base64,R0lGODlhAQABAAAAADs="
alt="Autumm leaves frame a student as he reads next to Fragment X-O in the Sheldon Memorial Sculpture gardens in between Architecture Hall and the Sheldon.">
</div>
</li>
<li class="dcf-media dcf-event" itemscope itemtype="http://schema.org/Event">
<div class="dcf-media-body dcf-1st dcf-d-flex dcf-flex-col">
<div class="dcf-2nd dcf-pl-3 dcf-lh-3 unl-font-sans">
<a class="dcf-d-block dcf-txt-lg dcf-txt-decor-hover dcf-bold" href="//events.unl.edu/2017/09/25/123410/" itemprop="url">
<span itemprop="name">Celebration of Youth XXIV</span>
</a>
<div class="dcf-pt-1 dcf-txt-xs" itemprop="location" itemscope itemtype="http://schema.org/Place">
<a class="dcf-txt-decor-none" href="https://www.google.com/maps/place/Home+Economics+Bldg,+University+of+Nebraska-Lincoln,+University+of+Nebraska-Lincoln:+East+Campus,+Lincoln,+NE+68503/@40.830064,-96.669451,15z/data=!4m2!3m1!1s0x8796bea3d95db147:0xef4b4207c59d4a79?hl=en-US" itemprop="url">
<span itemprop="name">Robert Hillestad Textiles Gallery</span>
</a>
</div>
</div>
<div class="dcf-1st dcf-d-flex dcf-mb-4 dcf-lh-1">
<time class="dcf-d-flex dcf-ai-center" datetime="2017-09-25" itemprop="startDate">
<span class="dcf-pr-1 dcf-txt-xs dcf-uppercase dcf-bold unl-ls-2">Sep</span>
<span class="dcf-txt-h4 dcf-bold">25</span>
</time>
<span class="dcf-d-none" aria-hidden="true">–</span>
<time class="dcf-d-flex dcf-ai-center" datetime="2017-10-24" itemprop="endDate">
<span class="dcf-event-endrange dcf-pr-1 dcf-txt-xs dcf-uppercase dcf-bold unl-ls-2">Oct</span>
<span class="dcf-txt-h4 dcf-bold">24</span>
</time>
</div>
</div>
<div class="dcf-2nd dcf-ml-5 dcf-media-object dcf-event-img dcf-ratio dcf-ratio-1x1">
<img
class="dcf-ratio-child dcf-obj-fit-cover"
sizes="(min-width: 55.927em) 10vw, 18vw"
srcset="wdn/templates_5.3/images/dev/150905-nu-byu-668-sm-min.jpg 284w,
wdn/templates_5.3/images/dev/150905-nu-byu-668-md-min.jpg 505w"
src="data:image/gif;base64,R0lGODlhAQABAAAAADs="
alt="Fans at Memorial Stadium cheer as Nebraska takes on B Y U.">
</div>
</li>
<li class="dcf-media dcf-event" itemscope itemtype="http://schema.org/Event">
<div class="dcf-media-body dcf-1st dcf-d-flex dcf-flex-col">
<div class="dcf-2nd dcf-pl-3 dcf-lh-3 unl-font-sans">
<a class="dcf-d-block dcf-txt-lg dcf-txt-decor-hover dcf-bold" href="//events.unl.edu/2017/09/25/122710/" itemprop="url">
<span itemprop="name">Ask Us about Canvas!</span>
</a>
<div class="dcf-pt-1 dcf-txt-xs" itemprop="location" itemscope itemtype="http://schema.org/Place">
<a class="dcf-txt-decor-none" href="http://maps.unl.edu/#NEU" itemprop="url">
<span itemprop="name">Nebraska East Union</span>
</a>
</div>
</div>
<div class="dcf-1st dcf-d-flex dcf-mb-4 dcf-lh-1">
<time class="dcf-d-flex dcf-ai-center" datetime="2017-09-25T11:00:00-06:00" itemprop="startDate">
<span class="dcf-pr-1 dcf-txt-xs dcf-uppercase dcf-bold unl-ls-2">Sep</span>
<span class="dcf-txt-h4 dcf-bold">25</span>
<span class="dcf-pl-4 dcf-txt-xs unl-font-sans">11:00 am</span>
</time>
<time class="dcf-d-flex dcf-ai-center" datetime="2017-09-25T14:00:00-06:00" itemprop="endDate">
<span class="dcf-sr-only">Sep</span>
<span class="dcf-sr-only">25</span>
<span class="dcf-event-endrange dcf-txt-xs unl-font-sans">2:00 pm</span>
</time>
</div>
</div>
<div class="dcf-2nd dcf-ml-5 dcf-media-object dcf-event-img dcf-ratio dcf-ratio-1x1">
<img
class="dcf-ratio-child dcf-obj-fit-cover"
sizes="(min-width: 55.927em) 10vw, 18vw"
srcset="wdn/templates_5.3/images/dev/140829-life-208-sm-min.jpg 284w,
wdn/templates_5.3/images/dev/140829-life-208-md-min.jpg 505w"
src="data:image/gif;base64,R0lGODlhAQABAAAAADs="
alt="Joseph Dauer teaches Life 121 - Fundamentals of Biology 2 in Henzlik Auditorium.">
</div>
</li>
<li class="dcf-media dcf-event" itemscope itemtype="http://schema.org/Event">
<div class="dcf-media-body dcf-1st dcf-d-flex dcf-flex-col">
<div class="dcf-2nd dcf-pl-3 dcf-lh-3 unl-font-sans">
<a class="dcf-d-block dcf-txt-lg dcf-txt-decor-hover dcf-bold" href="//events.unl.edu/2017/09/25/123212/" itemprop="url">
<span itemprop="name">FREE HIV Test Site</span>
</a>
<div class="dcf-pt-1 dcf-txt-xs" itemprop="location" itemscope itemtype="http://schema.org/Place">
<span itemprop="name">Selleck Hall</span>
</div>
</div>
<div class="dcf-1st dcf-d-flex dcf-mb-4 dcf-lh-1">
<time class="dcf-d-flex dcf-ai-center" datetime="2017-09-25T12:00:00-06:00" itemprop="startDate">
<span class="dcf-pr-1 dcf-txt-xs dcf-uppercase dcf-bold unl-ls-2">Sep</span>
<span class="dcf-txt-h4 dcf-bold">25</span>
<span class="dcf-pl-4 dcf-txt-xs unl-font-sans">12:00 pm</span>
</time>
<time class="dcf-d-flex dcf-ai-center" datetime="2017-09-25T16:00:00-06:00" itemprop="endDate">
<span class="dcf-sr-only">Sep</span>
<span class="dcf-sr-only">25</span>
<span class="dcf-event-endrange dcf-txt-xs unl-font-sans">4:00 pm</span>
</time>
</div>
</div>
<div class="dcf-2nd dcf-ml-5 dcf-media-object dcf-event-img dcf-ratio dcf-ratio-1x1">
<img
class="dcf-ratio-child dcf-obj-fit-cover"
sizes="(min-width: 55.927em) 10vw, 18vw"
srcset="wdn/templates_5.3/images/dev/120424-campus-097-sm-min.jpg 284w,
wdn/templates_5.3/images/dev/120424-campus-097-md-min.jpg 505w"
src="data:image/gif;base64,R0lGODlhAQABAAAAADs="
alt="Wispy clouds float above the columns on a mostly sunny day on campus.">
</div>
</li>
<li class="dcf-media dcf-event" itemscope itemtype="http://schema.org/Event">
<div class="dcf-media-body dcf-1st dcf-d-flex dcf-flex-col">
<div class="dcf-2nd dcf-pl-3 dcf-lh-3 unl-font-sans">
<a class="dcf-d-block dcf-txt-lg dcf-txt-decor-hover dcf-bold" href="//events.unl.edu/2017/09/25/111666/" itemprop="url">
<span itemprop="name">Business & Liberal Arts Career Fair</span>
</a>
<div class="dcf-pt-1 dcf-txt-xs" itemprop="location" itemscope itemtype="http://schema.org/Place">
<span itemprop="name">Pinnacle Bank Arena</span>
</div>
</div>
<div class="dcf-1st dcf-d-flex dcf-mb-4 dcf-lh-1">
<time class="dcf-d-flex dcf-ai-center" datetime="2017-09-25" itemprop="startDate">
<span class="dcf-pr-1 dcf-txt-xs dcf-uppercase dcf-bold unl-ls-2">Sep</span>
<span class="dcf-txt-h4 dcf-bold">25</span>
</time>
<span class="dcf-d-none" aria-hidden="true">–</span>
<time class="dcf-d-flex dcf-ai-center" datetime="2017-09-26" itemprop="endDate">
<span class="dcf-sr-only">Sep</span>
<span class="dcf-event-endrange dcf-txt-h4 dcf-bold">26</span>
</time>
</div>
</div>
<div class="dcf-2nd dcf-ml-5 dcf-media-object dcf-event-img dcf-ratio dcf-ratio-1x1">
<img
class="dcf-ratio-child dcf-obj-fit-cover"
sizes="(min-width: 55.927em) 10vw, 18vw"
srcset="wdn/templates_5.3/images/dev/140510-commencement-806-sm-min.jpg 284w,
wdn/templates_5.3/images/dev/140510-commencement-806-md-min.jpg 505w"
src="data:image/gif;base64,R0lGODlhAQABAAAAADs="
alt="The graduating class moves their tassels to the left at the end of undergraduate commencement.">
</div>
</li>
<li class="dcf-media dcf-event" itemscope itemtype="http://schema.org/Event">
<div class="dcf-media-body dcf-1st dcf-d-flex dcf-flex-col">
<div class="dcf-2nd dcf-pl-3 dcf-lh-3 unl-font-sans">
<a class="dcf-d-block dcf-txt-lg dcf-txt-decor-hover dcf-bold" href="//events.unl.edu/2017/09/25/123710/" itemprop="url">
<span itemprop="name">#MakerMonday</span>
</a>
<div class="dcf-pt-1 dcf-txt-xs" itemprop="location" itemscope itemtype="http://schema.org/Place">
<span itemprop="name">Nebraska Innovation Studio</span>
</div>
</div>
<div class="dcf-1st dcf-d-flex dcf-mb-4 dcf-lh-1">
<time class="dcf-d-flex dcf-ai-center" datetime="2017-09-25T00:14:30-06:00" itemprop="startDate">
<span class="dcf-pr-1 dcf-txt-xs dcf-uppercase dcf-bold unl-ls-2">Sep</span>
<span class="dcf-txt-h4 dcf-bold">25</span>
<span class="dcf-pl-4 dcf-txt-xs unl-font-sans">12:30 pm</span>
</time>
<span class="dcf-d-none" aria-hidden="true">–</span>
<time class="dcf-d-flex dcf-ai-center" datetime="2017-09-25T00:16:30-06:00" itemprop="endDate">
<span class="dcf-sr-only">Sep</span>
<span class="dcf-sr-only">25</span>
<span class="dcf-event-endrange dcf-txt-xs unl-font-sans">4:30 pm</span>
</time>
</div>
</div>
<div class="dcf-2nd dcf-ml-5 dcf-media-object dcf-event-img dcf-ratio dcf-ratio-1x1">
<img
class="dcf-ratio-child dcf-obj-fit-cover"
sizes="(min-width: 55.927em) 10vw, 18vw"
srcset="wdn/templates_5.3/images/dev/130619-campus-028-sm-min.jpg 284w,
wdn/templates_5.3/images/dev/130619-campus-028-md-min.jpg 505w"
src="data:image/gif;base64,R0lGODlhAQABAAAAADs="
alt="A blue sky and clouds reflect off the front of the Jackie Gaughan Muluticultural Center.">
</div>
</li>
</ul>
<div class="dcf-d-flex dcf-flex-wrap dcf-ai-center dcf-jc-between dcf-events-more unl-events-more">
<a class="dcf-btn dcf-btn-secondary dcf-2nd" href="https://events.unl.edu/upcoming/">Find more events</a>
<div class="dcf-d-flex dcf-ai-center dcf-1st dcf-mr-6">
<div class="dcf-mr-6 dcf-txt-xs dcf-uppercase unl-ls-2 unl-font-sans"><span class="dcf-bold">Subscribe</span> to <span class="dcf-d-block">this calendar</span></div>
<div class="dcf-btn-group">
<a class="dcf-btn dcf-btn-secondary" href="https://events.unl.edu/upcoming/?format=ics"><!-- <svg class="dcf-icon dcf-icon--inline dcf-icon--x dcf-mr-2" aria-hidden="true" focusable="false" width="16" height="16" viewBox="0 0 24 24"><path d="M23.5 2H20V.5c0-.3-.2-.5-.5-.5h-3c-.3 0-.5.2-.5.5V2H8V.5c0-.3-.2-.5-.5-.5h-3c-.3 0-.5.2-.5.5V2H.5c-.3 0-.5.2-.5.5V7h24V2.5c0-.3-.2-.5-.5-.5zM7 4H5V1h2v3zm12 0h-2V1h2v3zM0 23.5c0 .3.2.5.5.5h23c.3 0 .5-.2.5-.5V8H0v15.5zM7 15h4v-4c0-.6.4-1 1-1s1 .4 1 1v4h4c.6 0 1 .4 1 1s-.4 1-1 1h-4v4c0 .6-.4 1-1 1s-1-.4-1-1v-4H7c-.6 0-1-.4-1-1s.4-1 1-1z"/></svg>--><abbr class="dcf-txt-sm">ICS<span class="dcf-sr-only"> format</span></abbr></a>
<a class="dcf-btn dcf-btn-secondary" href="https://events.unl.edu/upcoming/?format=rss"><!-- <svg class="dcf-icon dcf-icon--inline dcf-icon--x dcf-mr-2" aria-hidden="true" focusable="false" width="16" height="16" viewBox="0 0 24 24"><path d="M20.5 0h-17C1.6 0 0 1.6 0 3.5v17C0 22.4 1.6 24 3.5 24h17c1.9 0 3.5-1.6 3.5-3.5v-17C24 1.6 22.4 0 20.5 0zM7 19c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm6 0c0-4.4-3.6-8-8-8v-1c5 0 9 4 9 9h-1zm5 0c0-7.2-5.8-13-13-13V5c7.7 0 14 6.3 14 14h-1z"/></svg> --><abbr class="dcf-txt-sm">RSS<span class="dcf-sr-only"> format</span></abbr></a>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Events Listing (Old) -->
<!--
<div class="dcf-events dcf-col-gap-vw dcf-row-gap-8 dcf-pt-10 dcf-pb-10">
<h2 class="dcf-events-heading">Upcoming Events</h2>
<ul class="dcf-events-listing dcf-col-gap-vw dcf-row-gap-6 dcf-mb-0" role="list">
<li class="dcf-media dcf-event dcf-pt-3 dcf-bt" itemscope itemtype="http://schema.org/Event">
<div class="dcf-media-body dcf-1st dcf-d-flex dcf-flex-col">