-
Notifications
You must be signed in to change notification settings - Fork 32
/
debug.shtml
1359 lines (1238 loc) · 83.8 KB
/
debug.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">
<div class="dcf-breadcrumbs-wrapper">
<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>
</div>
<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-w-max-md">
<!-- <h2>Dreamcatcher mumblecore sartorial bitters. Artisan bitters photo booth, American Apparel Bushwick PBR&B salvia Echo Park.</h2> -->
<p class="dcf-txt-lg">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 unl-frame-quad">
<img
class="dcf-ratio-child dcf-obj-fit-cover dcf-h-100% dcf-w-100%"
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-txt-lg">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>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>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>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>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>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">
<details>
<summary>Nullam id dolor id nibh ultricies vehicula ut id elit.</summary>
Nulla vitae elit libero, a pharetra augue. Sed posuere consectetur est at lobortis. Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam quis risus eget urna mollis ornare vel eu leo. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit. Etiam porta sem malesuada magna mollis euismod.
</details>
<details>
<summary>Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit.</summary>
Aenean lacinia bibendum nulla sed consectetur. Nullam quis risus eget urna mollis ornare vel eu leo. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Morbi leo risus, porta ac consectetur ac, vestibulum at eros. Cras justo odio, dapibus ac facilisis in, egestas eget quam.
</details>
<details>
<summary>Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor.</summary>
Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Etiam porta sem malesuada magna mollis euismod. Morbi leo risus, porta ac consectetur ac, vestibulum at eros.
</details>
</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">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="#">Do This Thing</a>
</div>
<div class="dcf-as-center">
<div class="dcf-ratio dcf-ratio-16x9 unl-frame-quad unl-bg-light-gray">
<img
loading="lazy"
class="dcf-ratio-child dcf-obj-fit-cover dcf-h-100% dcf-w-100% dcf-lazy-load"
data-sizes="(min-width: 41.956em) 43vw, 88vw"
data-src="wdn/templates_5.3/images/dev/150815-commencement-324-sm-min.jpg"
data-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.">
<noscript>
<img class="dcf-ratio-child dcf-obj-fit-contain" src="wdn/templates_5.3/images/dev/150815-commencement-324-sm-min.jpg" alt="Nilmar Robledo Caicedo from Colombia shakes hands after receiving his masters degree in agricultural economics.">
</noscript>
</div>
</div>
</div>
</div>
</div>
<h2 class="dcf-mt-6">Badges</h2>
<h3 class="dcf-mt-6">Roundrect Badges</h3>
<div class="dcf-mt-6">
<p>Paragraph with roundrect badge <span class="dcf-badge dcf-badge-roundrect">New</span></p>
</div>
<h3 class="dcf-mt-6">Pill Badges</h3>
<div class="dcf-mt-6">
<p>Paragraph with pill badge <span class="dcf-badge dcf-badge-pill">New</span></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>
<div class="dcf-mt-6">
<button class="dcf-btn dcf-btn-primary dcf-mr-4" type="button" disabled>Disabled Primary Button</button>
<button class="dcf-btn dcf-btn-secondary dcf-mr-4" type="button" disabled>Disabled Secondary Button</button>
<button class="dcf-btn dcf-btn-tertiary" type="button" disabled>Disabled Tertiary Button</button>
</div>
<div class="dcf-mt-6">
<div class="dcf-mb-3">
<a class="dcf-btn dcf-btn-primary dcf-mr-4" href="#">Primary Link</a>
<a class="dcf-btn dcf-btn-secondary dcf-mr-4" href="#">Secondary Link</a>
<a class="dcf-btn dcf-btn-tertiary dcf-mr-4" href="#">Tertiary Link</a>
</div>
<div class="dcf-mb-3">
<input type="button" class="dcf-btn dcf-btn-primary dcf-mr-4" value="Primary Input Button">
<input type="button" class="dcf-btn dcf-btn-secondary dcf-mr-4" value="Secondary Input Button">
<input type="button" class="dcf-btn dcf-btn-tertiary dcf-mr-4" value="Tertiary Input Button">
</div>
<div class="dcf-mb-3">
<input type="submit" class="dcf-btn dcf-btn-primary dcf-mr-4" value="Primary Input Submit">
<input type="submit" class="dcf-btn dcf-btn-secondary dcf-mr-4" value="Secondary Input Submit">
<input type="submit" class="dcf-btn dcf-btn-tertiary dcf-mr-4" value="Tertiary Input Submit">
</div>
<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>
<div class="dcf-mt-6">
<div class="dcf-mb-3">
<a class="dcf-btn dcf-btn-primary dcf-mr-4" href="#">Primary Link Visited</a>
<a class="dcf-btn dcf-btn-secondary dcf-mr-4" href="#">Secondary Link Visited</a>
<a class="dcf-btn dcf-btn-tertiary dcf-mr-4" href="#">Tertiary Link Visited</a>
</div>
<button class="dcf-btn dcf-btn-primary dcf-mr-4" type="button">Primary Button Visited</button>
<button class="dcf-btn dcf-btn-secondary dcf-mr-4" type="button">Secondary Button Visited</button>
<button class="dcf-btn dcf-btn-tertiary" type="button">Tertiary Button Visited</button>
</div>
<div class="dcf-mt-6">
<div class="dcf-mb-3">
<a class="dcf-btn dcf-btn-primary dcf-mr-4" href="#">Primary Link Hover</a>
<a class="dcf-btn dcf-btn-secondary dcf-mr-4" href="#">Secondary Link Hover</a>
<a class="dcf-btn dcf-btn-tertiary dcf-mr-4" href="#">Tertiary Link Hover</a>
</div>
<button class="dcf-btn dcf-btn-primary dcf-mr-4" type="button">Primary Button Hover</button>
<button class="dcf-btn dcf-btn-secondary dcf-mr-4" type="button">Secondary Button Hover</button>
<button class="dcf-btn dcf-btn-tertiary" type="button">Tertiary Button Hover</button>
</div>
<div class="dcf-mt-6">
<div class="dcf-mb-3">
<a class="dcf-btn dcf-btn-primary dcf-mr-4" href="#">Primary Link Focus</a>
<a class="dcf-btn dcf-btn-secondary dcf-mr-4" href="#">Secondary Link Focus</a>
<a class="dcf-btn dcf-btn-tertiary dcf-mr-4" href="#">Tertiary Link Focus</a>
</div>
<button class="dcf-btn dcf-btn-primary dcf-mr-4" type="button">Primary Button Focus</button>
<button class="dcf-btn dcf-btn-secondary dcf-mr-4" type="button">Secondary Button Focus</button>
<button class="dcf-btn dcf-btn-tertiary" type="button">Tertiary Button Focus</button>
</div>
<div class="dcf-mt-6">
<div class="dcf-mb-3">
<a class="dcf-btn dcf-btn-primary dcf-mr-4" href="#">Primary Link Active</a>
<a class="dcf-btn dcf-btn-secondary dcf-mr-4" href="#">Secondary Link Active</a>
<a class="dcf-btn dcf-btn-tertiary dcf-mr-4" href="#">Tertiary Link Active</a>
</div>
<button class="dcf-btn dcf-btn-primary dcf-mr-4" type="button">Primary Button Active</button>
<button class="dcf-btn dcf-btn-secondary dcf-mr-4" type="button">Secondary Button Active</button>
<button class="dcf-btn dcf-btn-tertiary" type="button">Tertiary Button Active</button>
</div>
<div class="dcf-mt-8 dcf-p-6 unl-bg-darkest-gray">
<div class="dcf-mt-6">
<div class="dcf-mb-3">
<a class="dcf-btn dcf-btn-inverse-primary dcf-mr-4" href="#">Inverse Primary Link</a>
<a class="dcf-btn dcf-btn-inverse-secondary dcf-mr-4" href="#">Inverse Secondary Link</a>
<a class="dcf-btn dcf-btn-inverse-tertiary dcf-mr-4" href="#">Inverse Tertiary Link</a>
</div>
<div class="dcf-mb-3">
<input type="button" class="dcf-btn dcf-btn-inverse-primary dcf-mr-4" value="Primary Inverse Input Button">
<input type="button" class="dcf-btn dcf-btn-inverse-secondary dcf-mr-4" value="Secondary Inverse Input Button">
<input type="button" class="dcf-btn dcf-btn-inverse-tertiary dcf-mr-4" value="Tertiary Inverse Input Button">
</div>
<div class="dcf-mb-3">
<input type="submit" class="dcf-btn dcf-btn-inverse-primary dcf-mr-4" value="Primary Inverse Input Submit">
<input type="submit" class="dcf-btn dcf-btn-inverse-secondary dcf-mr-4" value="Secondary Inverse Input Submit">
<input type="submit" class="dcf-btn dcf-btn-inverse-tertiary dcf-mr-4" value="Tertiary Inverse Input Submit">
</div>
<button class="dcf-btn dcf-btn-inverse-primary dcf-mr-4" type="button">Inverse Primary Button</button>
<button class="dcf-btn dcf-btn-inverse-secondary dcf-mr-4" type="button">Inverse Secondary Button</button>
<button class="dcf-btn dcf-btn-inverse-tertiary" type="button">Inverse Tertiary Button</button>
</div>
<div class="dcf-mt-6">
<div class="dcf-mb-3">
<a class="dcf-btn dcf-btn-inverse-primary dcf-mr-4" href="#">Inverse Primary Link Visited</a>
<a class="dcf-btn dcf-btn-inverse-secondary dcf-mr-4" href="#">Inverse Secondary Link Visited</a>
<a class="dcf-btn dcf-btn-inverse-tertiary dcf-mr-4" href="#">Inverse Tertiary Link Visited</a>
</div>
<button class="dcf-btn dcf-btn-inverse-primary dcf-mr-4" type="button">Inverse Primary Button Visited</button>
<button class="dcf-btn dcf-btn-inverse-secondary dcf-mr-4" type="button">Inverse Secondary Button Visited</button>
<button class="dcf-btn dcf-btn-inverse-tertiary" type="button">Inverse Tertiary Button Visited</button>
</div>
<div class="dcf-mt-6">
<div class="dcf-mb-3">
<a class="dcf-btn dcf-btn-inverse-primary dcf-mr-4" href="#">Inverse Primary Link Hover</a>
<a class="dcf-btn dcf-btn-inverse-secondary dcf-mr-4" href="#">Inverse Secondary Link Hover</a>
<a class="dcf-btn dcf-btn-inverse-tertiary dcf-mr-4" href="#">Inverse Tertiary Link Hover</a>
</div>
<button class="dcf-btn dcf-btn-inverse-primary dcf-mr-4" type="button">Inverse Primary Button Hover</button>
<button class="dcf-btn dcf-btn-inverse-secondary dcf-mr-4" type="button">Inverse Secondary Button Hover</button>
<button class="dcf-btn dcf-btn-inverse-tertiary" type="button">Inverse Tertiary Button Hover</button>
</div>
<div class="dcf-mt-6">
<div class="dcf-mb-3">
<a class="dcf-btn dcf-btn-inverse-primary dcf-mr-4" href="#">Inverse Primary Link Focus</a>
<a class="dcf-btn dcf-btn-inverse-secondary dcf-mr-4" href="#">Inverse Secondary Link Focus</a>
<a class="dcf-btn dcf-btn-inverse-tertiary dcf-mr-4" href="#">Inverse Tertiary Link Focus</a>
</div>
<button class="dcf-btn dcf-btn-inverse-primary dcf-mr-4" type="button">Inverse Primary Button Focus</button>
<button class="dcf-btn dcf-btn-inverse-secondary dcf-mr-4" type="button">Inverse Secondary Button Focus</button>
<button class="dcf-btn dcf-btn-inverse-tertiary" type="button">Inverse Tertiary Button Focus</button>
</div>
<div class="dcf-mt-6">
<div class="dcf-mb-3">
<a class="dcf-btn dcf-btn-inverse-primary dcf-mr-4" href="#">Inverse Primary Link Active</a>
<a class="dcf-btn dcf-btn-inverse-secondary dcf-mr-4" href="#">Inverse Secondary Link Active</a>
<a class="dcf-btn dcf-btn-inverse-tertiary dcf-mr-4" href="#">Inverse Tertiary Link Active</a>
</div>
<button class="dcf-btn dcf-btn-inverse-primary dcf-mr-4" type="button">Inverse Primary Button Active</button>
<button class="dcf-btn dcf-btn-inverse-secondary dcf-mr-4" type="button">Inverse Secondary Button Active</button>
<button class="dcf-btn dcf-btn-inverse-tertiary" type="button">Inverse Tertiary Button Active</button>
</div>
</div>
</div>
<div class="dcf-mt-6 dcf-mb-6">
<div class="dcf-slideshow dcf-mb-5" role="region" aria-label="WDN Sample Slideshow" data-shuffle="false">
<ul>
<li>
<figure>
<div class="dcf-ratio dcf-ratio-16x9 dcf-ratio-1x1@sm dcf-ratio-16x9@lg">
<img class="dcf-d-block dcf-ratio-child dcf-obj-fit-cover" src="wdn/templates_5.3/images/dev/150821-tunnel-325-xl-min.jpg" alt="">
</div>
<figcaption>Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. <small class="dcf-txt-xs dcf-txt-nowrap">Illustration by Jane Doe</small></figcaption>
</figure>
</li>
<li>
<figure>
<div class="dcf-ratio dcf-ratio-16x9 dcf-ratio-1x1@sm dcf-ratio-16x9@lg">
<img class="dcf-d-block dcf-ratio-child dcf-obj-fit-cover" src="wdn/templates_5.3/images/dev/150815-commencement-324-xl-min.jpg" alt="">
</div>
<figcaption>Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. <small class="dcf-txt-xs dcf-txt-nowrap">Illustration by Jane Doe</small></figcaption>
</figure>
</li>
<li>
<div class="dcf-ratio dcf-ratio-16x9 dcf-ratio-1x1@sm dcf-ratio-16x9@lg">
<img class="dcf-d-block dcf-ratio-child dcf-obj-fit-cover" src="wdn/templates_5.3/images/dev/111024-autumn-018-xl-min.jpg" alt="">
</div>
</li>
</ul>
</div>
<div class="dcf-slideshow dcf-mb-5" role="region" aria-label="WDN Sample Slideshow" data-toggle-caption="false" data-shuffle="true">
<ul>
<li>
<figure>
<div class="dcf-ratio dcf-ratio-16x9 dcf-ratio-1x1@sm dcf-ratio-16x9@lg">
<img class="dcf-d-block dcf-ratio-child dcf-obj-fit-cover" src="wdn/templates_5.3/images/dev/150821-tunnel-325-xl-min.jpg" alt="">
</div>
<figcaption>Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. <small class="dcf-txt-xs dcf-txt-nowrap">Illustration by Jane Doe</small></figcaption>
</figure>
</li>
<li>
<figure>
<div class="dcf-ratio dcf-ratio-16x9 dcf-ratio-1x1@sm dcf-ratio-16x9@lg">
<img class="dcf-d-block dcf-ratio-child dcf-obj-fit-cover" src="wdn/templates_5.3/images/dev/150815-commencement-324-xl-min.jpg" alt="">
</div>
<figcaption>Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. <small class="dcf-txt-xs dcf-txt-nowrap">Illustration by Jane Doe</small></figcaption>
</figure>
</li>
<li>
<div class="dcf-ratio dcf-ratio-16x9 dcf-ratio-1x1@sm dcf-ratio-16x9@lg">
<img class="dcf-d-block dcf-ratio-child dcf-obj-fit-cover" src="wdn/templates_5.3/images/dev/111024-autumn-018-xl-min.jpg" alt="">
</div>
</li>
</ul>
</div>
<script>
window.addEventListener('inlineJSReady', function() {
WDN.initializePlugin('slideshows');
}, false);
</script>
</div>
<div class="dcf-mt-6 dcf-mb-6">
<h2 class="dcf-mt-6">Toggle Buttons</h2>
<div id="my-div">
My First Div
</div>
<button
class="dcf-btn-toggle dcf-btn dcf-btn-primary"
data-controls="my-div"
data-label-on="Open My First Div"
data-label-off="Close My First Div"
data-start-expanded="true"
>
Toggle My First Div (Starts On)
</button>
<div id="my-div-with-id" hidden>
My Second Div
</div>
<button
id="my-div-with-id-toggle-button"
class="dcf-btn-toggle dcf-btn dcf-btn-primary"
data-controls="my-div-with-id"
data-label-on="Open My Second Div"
data-label-off="Close My Second Div"
data-start-expanded="false"
>
Toggle My Second Div (Starts Off)
</button>
<script>
window.addEventListener('inlineJSReady', function() {
WDN.initializePlugin('button-toggles');
}, false);
</script>
</div>
<div class="dcf-mt-6 dcf-mb-6">
<h2 class="dcf-mt-6">Collapsible Fieldsets</h2>
<form class="dcf-form">
<fieldset class="dcf-collapsible-fieldset">
<legend>Checkboxes</legend>
<div class="dcf-input-checkbox">
<input id="dcf-components-form-checkbox1A" type="checkbox" value="0">
<label for="dcf-components-form-checkbox1A">Checkbox 1</label>
</div>
<div class="dcf-input-checkbox">
<input id="dcf-components-form-checkbox2A" type="checkbox" value="1">
<label for="dcf-components-form-checkbox2A">Checkbox 2</label>
</div>
</fieldset>
<fieldset class="dcf-collapsible-fieldset" data-start-expanded="false" hidden>
<legend>Checkboxes (Starts collapsed)</legend>
<div class="dcf-input-checkbox">
<input id="dcf-components-form-checkbox1B" type="checkbox" value="0">
<label for="dcf-components-form-checkbox1B">Checkbox 1</label>
</div>
<div class="dcf-input-checkbox">
<input id="dcf-components-form-checkbox2B" type="checkbox" value="1">
<label for="dcf-components-form-checkbox2B">Checkbox 2</label>
</div>
</fieldset>
</form>
<script>
window.addEventListener('inlineJSReady', function() {
WDN.initializePlugin('collapsible-fieldsets');
}, false);
</script>
</div>
<div class="dcf-mt-6 dcf-mb-6">
<h2 class="dcf-mt-6">Popups</h2>
<h3 class="dcf-mt-6">Popups Special</h3>
<div class="dcf-popup">
<button class="dcf-btn dcf-btn-primary dcf-btn-toggle-popup">Open Popup With Close Button</button>
<div class="dcf-popup-content unl-bg-cerulean dcf-rounded dcf-p-3">
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean luctus hendrerit urna quis pellentesque. Aenean tempor est commodo nisi gravida interdum.
<button class="dcf-btn dcf-btn-primary dcf-btn-close-popup">Close Popup</button>
</div>
</div>
<div class="dcf-popup dcf-mt-6" data-hover="true">
<button class="dcf-btn dcf-btn-primary dcf-btn-toggle-popup">Open Popup Hover</button>
<div class="dcf-popup-content unl-bg-cerulean dcf-rounded dcf-p-3">
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean luctus hendrerit urna quis pellentesque. Aenean tempor est commodo nisi gravida interdum.
<button class="dcf-btn dcf-btn-primary dcf-btn-close-popup">Close Popup</button>
</div>
</div>
<div class="dcf-popup dcf-mt-6" data-hover="true" data-point="true">
<button class="dcf-btn dcf-btn-primary dcf-btn-toggle-popup">Open Popup Hover with point</button>
<div class="dcf-popup-content unl-bg-cerulean dcf-rounded dcf-p-3">
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean luctus hendrerit urna quis pellentesque. Aenean tempor est commodo nisi gravida interdum.
<button class="dcf-btn dcf-btn-primary dcf-btn-close-popup">Close Popup</button>
</div>
</div>
<div class="dcf-popup dcf-mt-6" id="popup-layer-1">
<button class="dcf-btn dcf-btn-primary dcf-btn-toggle-popup">Nested Popups Layer 1</button>
<div class="dcf-popup-content unl-bg-cerulean dcf-rounded dcf-p-3">
<p>Test Text</p>
<div class="dcf-popup" data-position="right">
<button class="dcf-btn dcf-btn-primary dcf-btn-toggle-popup">Nested Popups Layer 2 First</button>
<div class="dcf-popup-content unl-bg-scarlet dcf-rounded dcf-p-3">
<p>Test Text</p>
<div class="dcf-popup" data-position="bottom" data-alignment="center">
<button class="dcf-btn dcf-btn-primary dcf-btn-toggle-popup">Nested Popups Layer 3</button>
<div class="dcf-popup-content unl-bg-green dcf-rounded dcf-p-3">
<p>Test Text</p>
<button class="dcf-btn dcf-btn-primary dcf-btn-close-popup" data-for="popup-layer-1">Close Popup Layer 1</button>
<button class="dcf-btn dcf-btn-primary dcf-btn-close-popup">Close Popup Layer 3</button>
</div>
</div>
<button class="dcf-btn dcf-btn-primary dcf-btn-close-popup" data-for="popup-layer-1">Close Popup Layer 1</button>
<button class="dcf-btn dcf-btn-primary dcf-btn-close-popup">Close Popup Layer 2 First</button>
</div>
</div>
<p>Test Text</p>
<div class="dcf-popup" data-position="right">
<button class="dcf-btn dcf-btn-primary dcf-btn-toggle-popup">Nested Popups Layer 2 Second</button>
<div class="dcf-popup-content unl-bg-scarlet dcf-rounded dcf-p-3">
<p>Test Text</p>
<button class="dcf-btn dcf-btn-primary dcf-btn-close-popup">Close Popup Layer 2 Second</button>
</div>
</div>
<p>Test Text</p>
<button class="dcf-btn dcf-btn-primary dcf-btn-close-popup">Close Popup Layer 1</button>
<button class="dcf-btn dcf-btn-primary dcf-btn-close-popup">Close Popup Layer 1</button>
</div>
</div>
<h3 class="dcf-mt-6">Popups Points</h3>
<div class="dcf-grid dcf-grid-thirds dcf-col-gap-10 dcf-row-gap-10" style="width: fit-content;">
<!-- Bottom -->
<div class="dcf-popup" data-position="bottom" data-alignment="start" data-point="true">
<button class="dcf-btn dcf-btn-primary dcf-btn-toggle-popup">Open Popup Bottom And Start</button>
<div class="dcf-popup-content unl-bg-cerulean dcf-rounded dcf-p-3">
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean luctus hendrerit urna quis pellentesque. Aenean tempor est commodo nisi gravida interdum.
</div>
</div>
<div class="dcf-popup" data-position="bottom" data-alignment="end" data-point="true">
<button class="dcf-btn dcf-btn-primary dcf-btn-toggle-popup">Open Popup Bottom and End</button>
<div class="dcf-popup-content unl-bg-cerulean dcf-rounded dcf-p-3">
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean luctus hendrerit urna quis pellentesque. Aenean tempor est commodo nisi gravida interdum.
</div>
</div>
<div class="dcf-popup" data-position="bottom" data-alignment="center" data-point="true">
<button class="dcf-btn dcf-btn-primary dcf-btn-toggle-popup">Open Popup Bottom and Center</button>
<div class="dcf-popup-content unl-bg-cerulean dcf-rounded dcf-p-3">
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean luctus hendrerit urna quis pellentesque. Aenean tempor est commodo nisi gravida interdum.
</div>
</div>
<!-- Top -->
<div class="dcf-popup" data-position="top" data-alignment="start" data-point="true">
<button class="dcf-btn dcf-btn-primary dcf-btn-toggle-popup">Open Popup Top And Start</button>
<div class="dcf-popup-content unl-bg-cerulean dcf-rounded dcf-p-3">
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean luctus hendrerit urna quis pellentesque. Aenean tempor est commodo nisi gravida interdum.
</div>
</div>
<div class="dcf-popup" data-position="top" data-alignment="end" data-point="true">
<button class="dcf-btn dcf-btn-primary dcf-btn-toggle-popup">Open Popup Top and End</button>
<div class="dcf-popup-content unl-bg-cerulean dcf-rounded dcf-p-3">
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean luctus hendrerit urna quis pellentesque. Aenean tempor est commodo nisi gravida interdum.
</div>
</div>
<div class="dcf-popup" data-position="top" data-alignment="center" data-point="true">
<button class="dcf-btn dcf-btn-primary dcf-btn-toggle-popup">Open Popup Top and Center</button>
<div class="dcf-popup-content unl-bg-cerulean dcf-rounded dcf-p-3">
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean luctus hendrerit urna quis pellentesque. Aenean tempor est commodo nisi gravida interdum.
</div>
</div>
<!-- Right -->
<div class="dcf-popup" data-position="right" data-alignment="start" data-point="true">
<button class="dcf-btn dcf-btn-primary dcf-btn-toggle-popup">Open Popup Right And Start</button>
<div class="dcf-popup-content unl-bg-cerulean dcf-rounded dcf-p-3">
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean luctus hendrerit urna quis pellentesque. Aenean tempor est commodo nisi gravida interdum.
</div>
</div>
<div class="dcf-popup" data-position="right" data-alignment="end" data-point="true">
<button class="dcf-btn dcf-btn-primary dcf-btn-toggle-popup">Open Popup Right and End</button>
<div class="dcf-popup-content unl-bg-cerulean dcf-rounded dcf-p-3">
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean luctus hendrerit urna quis pellentesque. Aenean tempor est commodo nisi gravida interdum.
</div>
</div>
<div class="dcf-popup" data-position="right" data-alignment="center" data-point="true">
<button class="dcf-btn dcf-btn-primary dcf-btn-toggle-popup">Open Popup Right and Center</button>
<div class="dcf-popup-content unl-bg-cerulean dcf-rounded dcf-p-3">
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean luctus hendrerit urna quis pellentesque. Aenean tempor est commodo nisi gravida interdum.
</div>
</div>
<!-- Left -->
<div class="dcf-popup" data-position="left" data-alignment="start" data-point="true">
<button class="dcf-btn dcf-btn-primary dcf-btn-toggle-popup">Open Popup Left And Start</button>
<div class="dcf-popup-content unl-bg-cerulean dcf-rounded dcf-p-3">
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean luctus hendrerit urna quis pellentesque. Aenean tempor est commodo nisi gravida interdum.
</div>
</div>
<div class="dcf-popup" data-position="left" data-alignment="end" data-point="true">
<button class="dcf-btn dcf-btn-primary dcf-btn-toggle-popup">Open Popup Left and End</button>
<div class="dcf-popup-content unl-bg-cerulean dcf-rounded dcf-p-3">
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean luctus hendrerit urna quis pellentesque. Aenean tempor est commodo nisi gravida interdum.
</div>
</div>
<div class="dcf-popup" data-position="left" data-alignment="center" data-point="true">
<button class="dcf-btn dcf-btn-primary dcf-btn-toggle-popup">Open Popup Left and Center</button>
<div class="dcf-popup-content unl-bg-cerulean dcf-rounded dcf-p-3">
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean luctus hendrerit urna quis pellentesque. Aenean tempor est commodo nisi gravida interdum.
</div>
</div>
</div>
<h3 class="dcf-mt-6">Popups No Points</h3>
<div class="dcf-grid dcf-grid-thirds dcf-col-gap-10 dcf-row-gap-10" style="width: fit-content;">
<!-- Bottom -->
<div class="dcf-popup" data-position="bottom" data-alignment="start">
<button class="dcf-btn dcf-btn-primary dcf-btn-toggle-popup">Open Popup Bottom And Start</button>
<div class="dcf-popup-content unl-bg-cerulean dcf-rounded dcf-p-3">
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean luctus hendrerit urna quis pellentesque. Aenean tempor est commodo nisi gravida interdum.
<button class="dcf-btn dcf-btn-primary dcf-btn-close-popup">Close Popup</button>
</div>
</div>
<div class="dcf-popup" data-position="bottom" data-alignment="end">
<button class="dcf-btn dcf-btn-primary dcf-btn-toggle-popup">Open Popup Bottom and End</button>
<div class="dcf-popup-content unl-bg-cerulean dcf-rounded dcf-p-3">
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean luctus hendrerit urna quis pellentesque. Aenean tempor est commodo nisi gravida interdum.
</div>
</div>
<div class="dcf-popup" data-position="bottom" data-alignment="center">
<button class="dcf-btn dcf-btn-primary dcf-btn-toggle-popup">Open Popup Bottom and Center</button>
<div class="dcf-popup-content unl-bg-cerulean dcf-rounded dcf-p-3">
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean luctus hendrerit urna quis pellentesque. Aenean tempor est commodo nisi gravida interdum.
</div>
</div>
<!-- Top -->
<div class="dcf-popup" data-position="top" data-alignment="start">
<button class="dcf-btn dcf-btn-primary dcf-btn-toggle-popup">Open Popup Top And Start</button>
<div class="dcf-popup-content unl-bg-cerulean dcf-rounded dcf-p-3">
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean luctus hendrerit urna quis pellentesque. Aenean tempor est commodo nisi gravida interdum.
</div>
</div>
<div class="dcf-popup" data-position="top" data-alignment="end">
<button class="dcf-btn dcf-btn-primary dcf-btn-toggle-popup">Open Popup Top and End</button>
<div class="dcf-popup-content unl-bg-cerulean dcf-rounded dcf-p-3">
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean luctus hendrerit urna quis pellentesque. Aenean tempor est commodo nisi gravida interdum.
</div>
</div>
<div class="dcf-popup" data-position="top" data-alignment="center">
<button class="dcf-btn dcf-btn-primary dcf-btn-toggle-popup">Open Popup Top and Center</button>
<div class="dcf-popup-content unl-bg-cerulean dcf-rounded dcf-p-3">
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean luctus hendrerit urna quis pellentesque. Aenean tempor est commodo nisi gravida interdum.
</div>
</div>
<!-- Right -->
<div class="dcf-popup" data-position="right" data-alignment="start">
<button class="dcf-btn dcf-btn-primary dcf-btn-toggle-popup">Open Popup Right And Start</button>
<div class="dcf-popup-content unl-bg-cerulean dcf-rounded dcf-p-3">
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean luctus hendrerit urna quis pellentesque. Aenean tempor est commodo nisi gravida interdum.
</div>
</div>
<div class="dcf-popup" data-position="right" data-alignment="end">
<button class="dcf-btn dcf-btn-primary dcf-btn-toggle-popup">Open Popup Right and End</button>
<div class="dcf-popup-content unl-bg-cerulean dcf-rounded dcf-p-3">
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean luctus hendrerit urna quis pellentesque. Aenean tempor est commodo nisi gravida interdum.
</div>
</div>
<div class="dcf-popup" data-position="right" data-alignment="center">
<button class="dcf-btn dcf-btn-primary dcf-btn-toggle-popup">Open Popup Right and Center</button>
<div class="dcf-popup-content unl-bg-cerulean dcf-rounded dcf-p-3">
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean luctus hendrerit urna quis pellentesque. Aenean tempor est commodo nisi gravida interdum.
</div>
</div>
<!-- Left -->
<div class="dcf-popup" data-position="left" data-alignment="start">
<button class="dcf-btn dcf-btn-primary dcf-btn-toggle-popup">Open Popup Left And Start</button>
<div class="dcf-popup-content unl-bg-cerulean dcf-rounded dcf-p-3">
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean luctus hendrerit urna quis pellentesque. Aenean tempor est commodo nisi gravida interdum.
</div>
</div>
<div class="dcf-popup" data-position="left" data-alignment="end">
<button class="dcf-btn dcf-btn-primary dcf-btn-toggle-popup">Open Popup Left and End</button>
<div class="dcf-popup-content unl-bg-cerulean dcf-rounded dcf-p-3">
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean luctus hendrerit urna quis pellentesque. Aenean tempor est commodo nisi gravida interdum.
</div>
</div>
<div class="dcf-popup" data-position="left" data-alignment="center">
<button class="dcf-btn dcf-btn-primary dcf-btn-toggle-popup">Open Popup Left and Center</button>
<div class="dcf-popup-content unl-bg-cerulean dcf-rounded dcf-p-3">
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean luctus hendrerit urna quis pellentesque. Aenean tempor est commodo nisi gravida interdum.
</div>
</div>
</div>
</div>
<div class="dcf-mt-6 dcf-mb-6">
<h2 class="dcf-mt-6">Figcaption Toggle</h2>
<figure>
<div class="dcf-ratio dcf-ratio-16x9 dcf-ratio-1x1@sm dcf-ratio-16x9@lg">
<img class="dcf-d-block dcf-ratio-child dcf-obj-fit-cover" src="wdn/templates_5.3/images/dev/150821-tunnel-325-xl-min.jpg" alt="">
</div>
<figcaption class="dcf-figcaption dcf-figcaption-toggle">
Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum.
<small class="dcf-txt-xs dcf-txt-nowrap">Illustration by Jane Doe</small>
</figcaption>
</figure>
<script>
window.addEventListener('inlineJSReady', function() {
WDN.initializePlugin('figcaption-toggles');
}, false);
</script>
</div>
<h2 class="dcf-mt-6">Forms</h2>
<form class="dcf-form" action="?" method="post">
<fieldset>
<legend>Sample Form Content</legend>
<div class="dcf-form-group">
<label for="name">Name <small class="dcf-required">Required</small></label>
<input id="name" type="text" required>
</div>
<div class="dcf-form-group">
<label for="email">Email <small class="dcf-required">Required</small></label>
<input id="email" type="email" required>
</div>
<div class="dcf-form-group">
<label for="password">Password</label>
<input id="password" type="password" aria-describedby="pwd-help">
<p class="dcf-form-help" id="pwd-help">Make sure it’s a good one!</p>
</div>
<div class="dcf-form-group">
<label for="field-disabled">Disabled Field</label>
<input id="field-disabled" type="text" disabled>
</div>
<div class="dcf-form-group">
<label for="institution">Institution</label>
<select id="institution" name="institution">
<option value="unca" selected>University of Nebraska</option>
<option value="unl">UNL</option>
<option value="unk">UNK</option>
<option value="uno">UNO</option>
<option value="unmc">UNMC</option>
</select>
</div>
<fieldset class="dcf-form-group dcf-d-flex dcf-flex-col">
<legend class="dcf-legend">Checkboxes</legend>
<div class="dcf-input-checkbox">
<input id="elements-form-checkboxA" type="checkbox" value="0" aria-labelledby="elements-form-checkboxA-label">
<label for="elements-form-checkboxA" id="elements-form-checkboxA-label">Checkbox A</label>
</div>
<div class="dcf-input-checkbox">
<input id="elements-form-checkboxB" type="checkbox" value="1" aria-labelledby="elements-form-checkboxB-label" disabled="">
<label for="elements-form-checkboxB" id="elements-form-checkboxB-label">Checkbox B</label>
</div>
<div class="dcf-input-checkbox">
<input id="elements-form-checkboxC" type="checkbox" value="2" aria-labelledby="elements-form-checkboxC-label">
<label for="elements-form-checkboxC" id="elements-form-checkboxC-label">Checkbox C</label>
</div>
</fieldset>
<fieldset class="dcf-form-group dcf-d-flex dcf-flex-col">
<legend class="dcf-legend">Position</legend>
<div class="dcf-input-radio">
<input id="student_Position" name="position" type="radio" value="student">
<label for="student_Position">Student</label>
</div>
<div class="dcf-input-radio">
<input id="faculty_Position" name="position" type="radio" value="faculty">
<label for="faculty_Position">Faculty</label>
</div>
<div class="dcf-input-radio">
<input id="staff_Position" name="position" type="radio" value="staff">
<label for="staff_Position">Staff</label>
</div>
<div class="dcf-input-radio">
<input id="administrator_Position" name="position" type="radio" value="administrator" disabled>
<label for="administrator_Position">Administrator</label>
</div>
<div class="dcf-input-radio">
<input id="other_Position" name="position" type="radio" value="other">
<label for="other_Position">Other</label>
</div>
</fieldset>
<div class="dcf-form-group">
<label for="helpful_comments">Comments</label>
<textarea id="helpful_comments" cols="60" rows="5"></textarea>
</div>
<!--
<div class="dcf-form-group">
<label for="time">Date/time</label>
<input id="time" type="datetime-local">
<input type="text"
data-widget="flatpickr"
placeholder="Select Date & Time.."
id="time"
class="dcf-w-auto"
readonly>
</div>
-->
<!--
<div class="dcf-form-group">
<label for="output">Example output</label>
<output id="output" name="result">100</output>
</div>
-->
<div class="dcf-form-group">
<label for="example-input-file">File input</label>
<input class="dcf-input-file" id="example-input-file" type="file" aria-describedby="file-help">
<p class="dcf-form-help" id="file-help">This is some placeholder block-level help text for the above input. It’s a bit lighter and easily wraps to a new line.</p>
</div>
</fieldset>
<input class="dcf-btn dcf-btn-primary" name="submit" type="submit" value="Submit">
</form>
<div class="dcf-d-flex dcf-ai-center dcf-mt-6">
<label class="dcf-label dcf-mr-3" for="progress-bar-2">Progress</label>
<progress class="dcf-w-12" id="progress-bar-2" value="70" max="100">70 %</progress>
</div>
<h2 class="dcf-mt-6">Input Groups</h2>
<h3 class="dcf-mt-5 dcf-regular">With Add-on Before Input</h3>
<form class="dcf-form dcf-form-controls-inline" id="input-group-addon-example-1" action="?" method="get">
<label class="dcf-label dcf-mr-4" for="input-group-example-input-1">Username</label>
<div class="dcf-input-group">
<span class="dcf-input-group-addon">@</span>
<input id="input-group-example-input-1" name="q" type="search" required>
</div>
</form>
<h3 class="dcf-mt-5 dcf-regular">With Add-on After Input</h3>
<form class="dcf-form dcf-form-controls-inline" id="input-group-addon-example-2" action="?" method="get">
<label class="dcf-label dcf-mr-4" for="input-group-example-input-2">Email</label>
<div class="dcf-input-group">
<input id="input-group-example-input-2" name="q" type="search" required>
<span class="dcf-input-group-addon">@example.com</span>
</div>
</form>
<h3 class="dcf-mt-5 dcf-regular">With Button</h3>
<form class="dcf-form dcf-form-controls-inline" id="input-group-button-example-3" action="?" method="get">
<label class="dcf-label dcf-mr-4" for="input-group-example-input-3">Search Events</label>
<div class="dcf-input-group">
<input id="input-group-example-input-3" name="q" type="search" required>
<button class="dcf-btn dcf-btn-primary" type="submit">Submit</button>
</div>
</form>
<h2 class="dcf-mt-9">Modals</h2>
<button class="dcf-btn dcf-btn-primary dcf-btn-toggle-modal" data-toggles-modal="test-modal-1" type="button" disabled>Toggle Modal 1</button>
<div class="dcf-modal" id="test-modal-1" hidden>
<div class="dcf-modal-wrapper">
<div class="dcf-modal-header">
<h3>Example Modal 1</h3>
<button class="dcf-btn-close-modal">Close</button>
</div>
<div class="dcf-modal-content">
<p>This is my modal content. <a href="#">Fusce</a> dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Vestibulum id ligula porta felis euismod semper. Curabitur blandit <a href="#">tempus porttitor</a>. Cras justo odio, dapibus ac facilisis in, egestas eget quam.</p>
<button class="dcf-btn dcf-btn-primary dcf-btn-toggle-modal" data-toggles-modal="test-modal-1" type="button" disabled>Toggle Modal 1</button>
<button class="dcf-btn dcf-btn-primary dcf-btn-toggle-modal" data-toggles-modal="test-modal-2" type="button" disabled>Toggle Modal 2</button>
</div>
</div>
</div>
<button class="dcf-btn dcf-btn-primary dcf-btn-toggle-modal" data-toggles-modal="test-modal-2" type="button" disabled>Toggle Modal 2</button>
<div class="dcf-modal" id="test-modal-2" hidden>
<div class="dcf-modal-wrapper">
<div class="dcf-modal-header">
<h3>Example Modal 2</h3>