-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathd2l_html.txt
More file actions
1241 lines (1106 loc) · 91.3 KB
/
d2l_html.txt
File metadata and controls
1241 lines (1106 loc) · 91.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html><html data-userprofile-context="{"hasProfileCardAccess":true}" data-mathjax-context="{"renderLatex":false,"outputScale":1.5}" data-logging-endpoint="/d2l/lp/logger/provision?sessionToken=NjYwNiw3OTkyMQ" lang="en-us" data-lang-default="en-us" data-intl-overrides="{"number":{"patterns":{"decimal":{"negativePattern":"-{number}"},"percent":{"positivePattern":"{number} %","negativePattern":"-{number} %"}},"symbols":{"decimal":".","group":",","negative":"-","percent":"%"},"groupSize":[3]},"date":{"hour24":false,"calendar":{"firstDayOfWeek":0,"dayPeriods":{"am":"AM","pm":"PM"},"months":{"short":["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec",""],"long":["January","February","March","April","May","June","July","August","September","October","November","December",""]},"days":{"short":["Sun","Mon","Tue","Wed","Thu","Fri","Sat"]}},"formats":{"dateFormats":{"short":"M/d/yyyy"},"timeFormats":{"short":"h:mm tt","medium":"h:mm tt","full":"h:mm tt ZZZ"}}}}" data-oslo="{"batch":"/d2l/api/oslo/1/batch","collection":"/d2l/api/oslo/1/collection","version":"W/\"20.26.2.21397.638396676610101010\""}" data-timezone="{"name":"United States - New York","identifier":"America/New_York"}" data-terminology="{"outcomes":"outcomes","educator":"teacher","moduleHierarchy":"unit"}" data-app-version="20.26.2" dir="ltr" data-telemetry-endpoint="https://prd.us-east-1.telemetryservice.brightspace.com/api/events/" data-cdn="https://s.brightspace.com/apps/brightspace/20.26.2.21397/" data-global-context="{"orgUnitId":"6662","orgId":"6606","userId":"79921"}" data-he-context="{"activeOrgEnrollment":true,"applySandboxing":false,"bcsansFontAllowed":false,"contentStyler":false,"contentStylerCssOverride":"","enableLmsPathChecking":true,"generativeAIEndpoint":"","h5pContext":null,"h5pLtiDeploymentLinkId":null,"insertElement":false,"insertPractice":false,"layouts":false,"mathRenderScale":1.5,"maxFileSize":3221225472,"mentions":false,"orgUnitId":"6662","orgUnitPath":"/content/","pasteFormatting":"merge","sourceEditable":true,"uploadFiles":false,"useNewTinyMCEVersion":false,"viewFiles":false,"wmodeOpaque":true}" data-css-vars="{"--d2l-branding-primary-color":"#a4d65e"}" style="--d2l-vh: 7.2px; --d2l-vw: 12.8px;"><head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Homepage - University of Maine at Augusta</title>
<link rel="preconnect" href="https://s.brightspace.com/lib/bsi/2026.2.264/" crossorigin="">
<link rel="dns-prefetch" href="https://s.brightspace.com/lib/bsi/2026.2.264/">
<link rel="modulepreload" href="https://s.brightspace.com/lib/bsi/2026.2.264/unbundled/bsi-unbundled.js" as="script" crossorigin="anonymous">
<link rel="modulepreload" href="https://s.brightspace.com/lib/bsi/2026.2.264/unbundled/navigation.js" as="script" crossorigin="anonymous">
<link rel="modulepreload" href="https://s.brightspace.com/lib/bsi/2026.2.264/unbundled/navigation-main-header.js" as="script" crossorigin="anonymous">
<link rel="modulepreload" href="https://s.brightspace.com/lib/bsi/2026.2.264/unbundled/navigation-button-icon.js" as="script" crossorigin="anonymous">
<link rel="modulepreload" href="https://s.brightspace.com/lib/bsi/2026.2.264/unbundled/navigation-link-icon.js" as="script" crossorigin="anonymous">
<link rel="modulepreload" href="https://s.brightspace.com/lib/bsi/2026.2.264/unbundled/navigation-separator.js" as="script" crossorigin="anonymous">
<link rel="modulepreload" href="https://s.brightspace.com/lib/bsi/2026.2.264/unbundled/navigation-link-image.js" as="script" crossorigin="anonymous">
<link rel="modulepreload" href="https://s.brightspace.com/lib/bsi/2026.2.264/unbundled/navigation-dropdown-button-icon.js" as="script" crossorigin="anonymous">
<link rel="modulepreload" href="https://s.brightspace.com/lib/bsi/2026.2.264/unbundled/dropdown-content.js" as="script" crossorigin="anonymous">
<link rel="modulepreload" href="https://s.brightspace.com/lib/bsi/2026.2.264/unbundled/navigation-dropdown-button-custom.js" as="script" crossorigin="anonymous">
<link rel="modulepreload" href="https://s.brightspace.com/lib/bsi/2026.2.264/unbundled/d2l-profile-image-base.js" as="script" crossorigin="anonymous">
<link rel="modulepreload" href="https://s.brightspace.com/lib/bsi/2026.2.264/unbundled/navigation-main-footer.js" as="script" crossorigin="anonymous">
<link rel="modulepreload" href="https://s.brightspace.com/lib/bsi/2026.2.264/unbundled/dropdown.js" as="script" crossorigin="anonymous">
<link rel="modulepreload" href="https://s.brightspace.com/lib/bsi/2026.2.264/unbundled/dropdown-menu.js" as="script" crossorigin="anonymous">
<link rel="modulepreload" href="https://s.brightspace.com/lib/bsi/2026.2.264/unbundled/icon.js" as="script" crossorigin="anonymous">
<link rel="modulepreload" href="https://s.brightspace.com/lib/bsi/2026.2.264/unbundled/menu.js" as="script" crossorigin="anonymous">
<link rel="modulepreload" href="https://s.brightspace.com/lib/bsi/2026.2.264/unbundled/menu-item.js" as="script" crossorigin="anonymous">
<link rel="modulepreload" href="https://s.brightspace.com/lib/bsi/2026.2.264/unbundled/menu-item-link.js" as="script" crossorigin="anonymous">
<link rel="modulepreload" href="https://s.brightspace.com/lib/bsi/2026.2.264/unbundled/navigation-band.js" as="script" crossorigin="anonymous">
<link rel="modulepreload" href="https://s.brightspace.com/lib/bsi/2026.2.264/unbundled/button-icon.js" as="script" crossorigin="anonymous">
<link rel="modulepreload" href="https://s.brightspace.com/lib/bsi/2026.2.264/unbundled/menu-item-separator.js" as="script" crossorigin="anonymous">
<link rel="modulepreload" href="https://s.brightspace.com/lib/bsi/2026.2.264/unbundled/d2l-image-banner-overlay.js" as="script" crossorigin="anonymous">
<link rel="modulepreload" href="https://s.brightspace.com/lib/bsi/2026.2.264/unbundled/expand-collapse-content.js" as="script" crossorigin="anonymous">
<link rel="modulepreload" href="https://s.brightspace.com/lib/bsi/2026.2.264/unbundled/d2l-my-courses.js" as="script" crossorigin="anonymous">
<link rel="modulepreload" href="https://s.brightspace.com/lib/bsi/2026.2.264/unbundled/dropdown-context-menu.js" as="script" crossorigin="anonymous">
<link rel="modulepreload" href="https://s.brightspace.com/lib/bsi/2026.2.264/unbundled/html-block.js" as="script" crossorigin="anonymous">
<script async="" src="https://www.googletagmanager.com/gtm.js?id=G-PDG4BGM9SH"></script><script>
(function(){if('PerformanceLongTaskTiming' in window) {var g = window.__tti = {e:[]};g.o = new PerformanceObserver( function( l ){ g.e = g.e.concat( l.getEntries() ) });g.o.observe({ entryTypes:['longtask']})}})();
(function(){var client;var errors = [];window.addEventListener('d2l-logging-loaded', function(e) {client = e.detail.createClient('uncaught-errors', { shouldThrottle: true });if (errors.length > 0) {client.legacyErrorBatch(errors);}});var handleError = function(data) {if (!data.message) return;if (data.error && data.error.stack && (data.error.stack.includes('/content/') || data.error.stack.includes('/shared/'))) return;if (client) {client.legacyError(data.message, data.source, data.lineno, data.colno, data.error);} else {errors.push(data);}};window.addEventListener('error', function(e) {handleError({ message: e.message, source: e.source, lineno: e.lineno, colno: e.colno, error: e.error });});window.addEventListener('unhandledrejection', function(e) {handleError({message: e.reason ? (e.reason.message ? e.reason.message : e.reason) : '',error: e.reason});});})();
(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','G-PDG4BGM9SH');
(function(){try { localStorage.setItem('XSRF.Token','m4wZNf29DIriFOcs4hEJjoGq93v2XvD7');localStorage.setItem('Session.UserId','79921');} catch(e) {}})();
(function(){if(window['FontFace'] === undefined) { window.d2lFontsLoaded = true; return; }window.d2lFontsLoaded = false;Promise.all(['400','700'].map(function(w) {return new FontFace('Lato','url(https://s.brightspace.com/lib/fonts/0.6.1/assets/Lato-' + w + '.woff2) format("woff2")', {style:'normal',weight: w}).load();})).then(function() {window.d2lFontsLoaded = true;if(window['D2L'] && window.D2L['FontsLoaded']) { window.D2L.FontsLoaded(); }});})();
(function(){
D2L = window.D2L || {}; D2L.LP = D2L.LP || {}; D2L.LP.Web = D2L.LP.Web || {}; D2L.LP.Web.UI = D2L.LP.Web.UI || {};
D2L.LP.Web.UI.Flags = {
ListedFlags: {"ACC-5-dashboard":false,"kaiju-349-source-course-deploy":true,"award-enable-copy-workflow":false,"awards-increase-string-fields-length":true,"LURV-6105-update-public-awards-fields":true,"awards-summary-date-localization-fix":true,"create-space-experimental-brightspace-object-types":false,"MAV-5508-welcome-widget-create-new":true,"ipsis-sourcesystem-migration":true,"ipsis-provider-oldstandardcsv":false,"ipsis-oneroster-csv-powerschool":false,"ipsis-oneroster-full-sync-implicit-unenrollments":false,"ipsis-esb-lis":false,"hyrl-4-ipsis-queued-batches":true,"f17778-oneroster-psur":false,"f19471-gg4l-oneroster-grades-passback":true,"hyrl-1999-oneroster-rest-1p2":false,"hyrl-2561-ipsis-lms-invoke-aws-lambdas":true,"hyrl-2962-cancel-batch":false,"hyrl-3638-user-default-inactive-option":true,"hyrl-3587-hylia-data-pond":false,"F16988-add-to-calendar":true,"advanced-assessments-groups":true,"PHNX-2361-lti-activity-usage":false,"BORG-5035-Use-Full-Html-Editor":true,"nim-3228-ce-multi-eval-tab-skeleton-fix":true,"nim-5386-modify-activity-display-return-to":true,"nim-5487-fix-assigned-actor-counts":true,"course-completion-manual-override":true,"PHNX-3264-unavailable-content-visibility-setting":true,"F18735-lti-special-access-ui-feature-flag":false,"F19162-enable-content-face-releaseconditions":true,"F21912-enable-content-face-competencies":true,"F19163-enable-content-face-standards":true,"IDCS-15-edit-content-file-descriptions":true,"IDCS-17-edit-weblink-descriptions":true,"PHNX-1554-enable-refactored-completion-summary":true,"PHNX-2629-access-unlimited-depth":true,"IDCS-283-edit-lti-descriptions":true,"EP-1169-use-content-search":true,"EP-1097-edit-scorm-descriptions":true,"EP-1432-enable-description-scrolling-hovering":true,"EP-1339-show-next-and-previous-buttons":true,"EP-1580-enable-url-updating-in-lessons-next-prev":true,"PHNX-2357-user-guided-grade-associations":true,"PHNX-2649-lessons-course-overview":true,"PHNX-3198-respect-availability-window":true,"PHNX-3065-lessons-quicklink-current-window-navigation":true,"PHNX-2766-lazy-load-content":true,"PHNX-2988-lessons-full-date-tooltip-and-aria":true,"PHNX-3063-support-availability-types":true,"EP-1454-enable-module-level-outcome-alignment":false,"usa-1243-discussions-due-date":true,"FED-3067-Annual-Consumption":true,"cpd-add-record-from-award":true,"cpd-utc-dates":true,"cpd-default-attachments":true,"cpd-save-targets-dialog":true,"LURV-6016-CPD-Submission-Alert":true,"nim-3661-new-alerts-on-incorrect-file-extenstion-assignment-submission":true,"fed-54-in-progress":false,"FED-4668-lift-outcomes":true,"FED-4649-content-gen-import-expand":true,"FED-4285-content-templates":true,"HAI-1593-content-picker-quiz":true,"HAI-1591-content-picker-ideas":true,"HAI-1592-content-picker-summary":true,"HAI-1821-content-picker-lss":true,"HAI-596-Interventions":true,"HAI-2303-lcg-bulk-template":false,"FED-6732-quiz-custom-instructions":false,"FED-6876-idea-custom-instructions":false,"rpc-recalculate-all-users-fix":true,"oad-include-asn":true,"EP-1443-enable-lightcast-skills":false,"rename-programs-to-outcome-sets":true,"outcome-sets-organization":true,"outcomes-set-course-dataset":true,"outcomes-set-org-dataset":true,"EP-1420-enable-createspace-picker":false,"outcome-sets-scales":false,"de44716-lti-iframe-resize-limit":false,"lti-apps":false,"uce-eula-dialog":true,"BORG-4318-hide-quiz-question-points":true,"BORG-5230-zero-point-questions":true,"BORG-6211-jobify-survey-export":true,"BORG-5429-Hotspot-Question-Type":false,"BORG-3975-quizzing-h5p-improvements":false,"f21399-reopen-quiz-attempt":true,"BORG-3800-attempt-log-tab-id-additional-work":true,"BORG-5624-question-pools-validate-numquestions":true,"EP-1126-edit-lor-descriptions":true,"FED-2493-Docs-PDF":true,"HAI-2170-study-notebook":false,"MAV-5203-createspace-h5p-library":false,"GAUD-7472-dropdown-popover":true,"GAUD-7355-tooltip-popover":true,"GAUD-7146-tabs-new-structure":true,"GAUD-8605-tab-no-initial-selected-event":true,"GAUD-8351-dialog-resize-telemetry":true,"GAUD-8658-mvc-dialog-focus-custom-elems":true,"PHNX-3234-dialog-alignment-fix":true,"GAUD-8228-8186-improved-table-col-sync":true,"GAUD-8465-immersive-nav-text-spacing":true,"lurv-6209-user-merge":false,"rubrics-clear-selections-option-and-menu-improvements":true,"KAIJU-189-source-course-deploy":true,"MAV-5177-source-courses-in-createspace":false,"MAV-3788-slim-announcements-no-context-override":true,"MAV-4341-single-profile-social-media-update":true,"MAV-4588-learner-awards-no-context-override":true,"MAV-4591-welcome-window-no-context-override":false,"MAV-5067-hwep-empty-widget":true,"MAV-5258-mpw-profile-dropdown":true,"shield-4811-enter-grades-scrolling-fix":false,"GAUD-7660-legacy-tabs-backport":true,"workforce-learning-groups":false,"scheduled-learning":false},
Flag: function(feature, defaultValue) {
const featureValue = D2L.LP.Web.UI.Flags.ListedFlags[feature];
return featureValue !== undefined ? featureValue : defaultValue;
}
};
})();
</script>
<meta name="robots" content="noindex">
<link rel="icon" href="/d2l/lp/web/faviconView?variant=0&version=1">
<link rel="stylesheet" type="text/css" href="https://s.brightspace.com/lib/bsi/2026.2.264/bsi.css">
<link rel="stylesheet" type="text/css" href="https://s.brightspace.com/lib/reset-css/1.1.0/reset.css">
<link rel="stylesheet" type="text/css" href="https://s.brightspace.com/apps/brightspace/20.26.2.21397/web-packages/D2L.LP.Web.Desktop.css">
<link rel="stylesheet" type="text/css" href="https://s.brightspace.com/apps/brightspace/20.26.2.21397/web-packages/D2L.PlatformTools.Homepage.css">
<link rel="stylesheet" type="text/css" href="https://s.brightspace.com/lib/bsi/2026.2.264/homepages.css">
<style>
html { font-size:20px; }
html { --d2l-branding-primary-color: #a4d65e; }
.d2l-branding-navigation-background-color {background-color: #003057;}
.d2l_1_21_903 {margin:10px;}
.d2l_1_33_244 {width:500px;}
.d2l_1_34_887 {background-position:left top;}
.d2l_1_35_808 {padding:1em;}
.d2l_1_36_4 {background-image:url('https://s.brightspace.com/lib/bsi/2026.2.264/images/tier1/alert.svg');}
.d2l_1_37_779 {background-position:right top;}
.d2l_1_38_167 {padding-right:31px;}
.d2l_1_39_787 {min-height:18px;}
.d2l_1_40_880 {background-image:url('https://s.brightspace.com/lib/bsi/2026.2.264/images/tier1/check.svg');}
.d2l_1_41_859 {padding:3.4em;}
.d2l_1_46_463 {float:left;}
.d2l_1_54_112 {width:100%;}
.d2l_1_55_785 {height:50px;}
</style>
<script>(function() {})();</script><style id="d2l-colors">
html {
/* basic grays (lightest to darkest) */
--d2l-color-regolith: #f9fbff;
--d2l-color-sylvite: #f1f5fb;
--d2l-color-gypsum: #e3e9f1;
--d2l-color-mica: #cdd5dc;
--d2l-color-corundum: #b1b9be;
--d2l-color-chromite: #90989d;
--d2l-color-galena: #6e7477;
--d2l-color-tungsten: #494c4e;
--d2l-color-ferrite: #202122;
/* zircon */
--d2l-color-zircon-plus-2: #e0feff;
--d2l-color-zircon-plus-1: #00d2ed;
--d2l-color-zircon: #008eab;
--d2l-color-zircon-minus-1: #035670;
/* celestine */
--d2l-color-celestine-plus-2: #e8f8ff;
--d2l-color-celestine-plus-1: #29a6ff;
--d2l-color-celestine: #006fbf;
--d2l-color-celestine-minus-1: #004489;
/* amethyst */
--d2l-color-amethyst-plus-2: #f2f0ff;
--d2l-color-amethyst-plus-1: #8982ff;
--d2l-color-amethyst: #6038ff;
--d2l-color-amethyst-minus-1: #4500db;
/* fluorite */
--d2l-color-fluorite-plus-2: #f9ebff;
--d2l-color-fluorite-plus-1: #ce68fa;
--d2l-color-fluorite: #9d1fd4;
--d2l-color-fluorite-minus-1: #6900a0;
/* tourmaline */
--d2l-color-tourmaline-plus-2: #ffebf6;
--d2l-color-tourmaline-plus-1: #fd4e9d;
--d2l-color-tourmaline: #d40067;
--d2l-color-tourmaline-minus-1: #990056;
/* cinnabar */
--d2l-color-cinnabar-plus-2: #ffede8;
--d2l-color-cinnabar-plus-1: #ff575a;
--d2l-color-cinnabar: #cd2026;
--d2l-color-cinnabar-minus-1: #990006;
/* carnelian */
--d2l-color-carnelian-plus-1: #fff3e0;
--d2l-color-carnelian: #e87511;
--d2l-color-carnelian-minus-1: #ba4700;
--d2l-color-carnelian-minus-2: #7d2600;
/* citrine */
--d2l-color-citrine-plus-1: #fff9d6;
--d2l-color-citrine: #ffba59;
--d2l-color-citrine-minus-1: #c47400;
--d2l-color-citrine-minus-2: #7a4300;
/* peridot */
--d2l-color-peridot-plus-1: #efffd9;
--d2l-color-peridot: #8ad934;
--d2l-color-peridot-minus-1: #4a8f00;
--d2l-color-peridot-minus-2: #2f5e00;
/* olivine */
--d2l-color-olivine-plus-1: #e7ffe3;
--d2l-color-olivine: #46a661;
--d2l-color-olivine-minus-1: #027a21;
--d2l-color-olivine-minus-2: #005614;
/* malachite */
--d2l-color-malachite-plus-1: #e3fff5;
--d2l-color-malachite: #2de2c0;
--d2l-color-malachite-minus-1: #00a490;
--d2l-color-malachite-minus-2: #00635e;
/* primary accent */
--d2l-color-primary-accent-action: var(--d2l-color-celestine);
--d2l-color-primary-accent-indicator: var(--d2l-color-carnelian);
/* feedback */
--d2l-color-feedback-error: var(--d2l-color-cinnabar);
--d2l-color-feedback-warning: var(--d2l-color-carnelian);
--d2l-color-feedback-success: var(--d2l-color-olivine);
--d2l-color-feedback-action: var(--d2l-color-celestine);
}
</style><dom-module id="d2l-course-image">
<template strip-whitespace="">
<style>
.shown {
opacity: 1;
}
img {
object-fit: cover;
object-position: center;
height: 100%;
width: 100%;
opacity: 0;
transition: opacity 0.5s;
}
:host([load-error]) img {
display: none;
}
.d2l-course-image-error-container {
display: none;
height: 100%;
width: 100%;
}
:host([load-error]) .d2l-course-image-error-container {
display: block;
}
</style>
<img src="[[_src]]" srcset$="[[_srcset]]" loading="lazy" sizes$="[[_tileSizes]]" on-load="_showImage" on-error="_handleError" class$="[[_imageClass]]" alt="" aria-hidden="true">
<div class="d2l-course-image-error-container">
<svg viewBox="0 0 231 103" xmlns="http://www.w3.org/2000/svg">
<g fill="none" fill-rule="evenodd"><path fill="#E3E9F1" d="M0 0h231v103H0z"></path>
<path d="M231 89l-41.216-37.138c-2.4-2.874-6.624-5-11.712-5.92-1.824-.287-3.648-.46-5.472-.46-3.36 0-6.72.518-9.696 1.552L101.368 68.53 77.752 58.93c-3.264-1.322-7.008-1.954-10.752-1.954-4.992 0-9.888 1.15-13.536 3.39L0 87v16h231V89z" fill="#CDD5DC"></path>
<path d="M116 41c0 8.636-5 15-15 15s-15-6.364-15-15 5-15 15-15 15 6.364 15 15z" fill="#CDD5DC"></path>
</g>
</svg>
</div>
</template>
</dom-module><dom-module id="d2l-search-widget">
<template strip-whitespace="">
<d2l-input-search label="[[searchLabel]]" placeholder="[[placeholderText]]"></d2l-input-search>
</template>
</dom-module><dom-module id="d2l-image-selector-tile-styles">
<template strip-whitespace="">
<style>
:host {
background-color: lightgrey;
overflow: hidden;
}
.d2l-image-tile {
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
overflow: hidden;
display: flex;
align-items: center;
justify-content: center;
}
.d2l-image-tile-overlay {
z-index: 2;
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
display: flex;
align-items: center;
justify-content: center;
background: none;
pointer-events: none;
transition: opacity 0.35s;
opacity: 0;
}
.d2l-image-tile-content {
position: relative;
height: 100%;
min-height: 100%;
min-width: 100%;
top: 0;
left: 0;
transition: transform 0.35s, filter 0.35s, -webkit-filter 0.35s;
transform: scale(1.0) translateZ(0);
overflow: hidden;
}
.no-image .d2l-image-tile-content,
.no-image .click-overlay,
.no-image .d2l-image-tile-overlay {
display: none;
}
.d2l-image-tile-content d2l-course-image {
height: 100%;
min-width: 100%;
background-color: lightgray;
}
.d2l-image-tile:hover .d2l-image-tile-content,
.mobile-selected .d2l-image-tile-content {
transform: scale(1.2) translateZ(0);
-webkit-filter: saturate(1.15);
filter: saturate(1.15);
}
.d2l-image-tile:hover .d2l-image-tile-overlay,
.mobile-selected .d2l-image-tile-overlay {
box-shadow: 3px 2px 10px rgba(0, 0, 0, 0);
opacity: 1;
}
.click-overlay {
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
z-index: 3;
}
.d2l-image-tile:hover .click-overlay {
pointer-events: none;
}
.overlay-button {
z-index: 4;
background: rgba(0,0,0,0.5);
border: 0;
border-radius: 3px;
padding: 15px;
color: white;
margin-top: -30px;
transition: margin-top 0.35s, color 0.5s, background 0.5s;
font-family: inherit;
font-size: inherit;
pointer-events:all;
}
.overlay-button-inner {
height: 100%;
width: 100%;
display: flex;
align-items: center;
}
.overlay-button-text {
padding-top: 2px;
font-size: 0.8em;
}
.overlay-button:hover, .overlay-button:focus {
opacity: 1;
background: var(--d2l-color-celestine);
}
.camera-icon {
margin-right: 10px;
color: white;
}
.d2l-image-tile:hover .d2l-image-tile-overlay .overlay-button,
.mobile-selected .d2l-image-tile-overlay .overlay-button {
margin-top: 0;
cursor: pointer;
}
</style>
</template>
</dom-module><dom-module id="d2l-image-selector-tile">
<template strip-whitespace="">
<style include="d2l-image-selector-tile-styles">
.d2l-image-selector-tile-hidden {
opacity: 0;
}
.shown {
animation-name: shown;
animation-duration: 0.5s;
animation-fill-mode: forwards;
}
@keyframes shown {
0% { opacity: 0 }
100% { opacity: 1; }
}
</style>
<div class$="[[_getTileClass(image)]]">
<div class="click-overlay" on-click="_toggleOverlayOn" on-blur="_toggleOverlayOff" tabindex="-1">
</div>
<div class="d2l-image-tile-overlay">
<button class="overlay-button" on-tap="_selectImage" on-focus="_toggleOverlayOn" on-blur="_toggleOverlayOff">
<div class="overlay-button-inner">
<d2l-icon class="camera-icon" icon="tier1:pic" aria-hidden="true"></d2l-icon>
<span class="overlay-button-text">[[localize('useThisImage')]]</span>
</div>
</button>
</div>
<div class="d2l-image-tile-content">
<d2l-course-image image="[[image]]" sizes="[[_imageSizes]]" type="narrow"></d2l-course-image>
</div>
</div>
</template>
</dom-module><dom-module id="d2l-image-tile-grid">
<template strip-whitespace="">
<style>
:host {
--breakpoint-gutter-width: 0.8%;
/*
* 100% = n(tile width) + 2n(margin) - 2(margin),
* see d2l-course-tile-grid-styles.html for a more in-depth description
*/
--breakpoint-two-column-width: 48.7%;
--breakpoint-three-column-width: 31.6%;
/*
Height has to be 73% of the width to maintain the image aspect ratio,
use padding, as it sizes in relation to the width of the screen as opposed to the height (yay css!)
*/
--breakpoint-one-column-height: 73%;
--breakpoint-two-column-height: 35.551%;
--breakpoint-three-column-height: 23.068%;
}
.grid-child {
width: 100%;
}
.grid-container {
position: relative;
width: 100%;
display: flex;
flex-wrap: wrap;
flex-direction: row;
align-items: flex-start;
}
.responsive-columns-3-2-1 {
/* This needs to be a block so that we get the width-based padding-top for it's children on firefox */
display: block;
}
.responsive-columns-3-2-1 > .grid-child {
height: auto;
position: relative;
display: inline-block;
}
@media screen and (min-width: 992px) {
.responsive-columns-3-2-1 {
padding: 0;
}
.responsive-columns-3-2-1 > .grid-child {
width: var(--breakpoint-three-column-width);
padding-top: var(--breakpoint-three-column-height);
margin: var(--breakpoint-gutter-width);
}
.responsive-columns-3-2-1 > .grid-child:nth-child(3n) {
margin-right: 0;
}
.responsive-columns-3-2-1 > .grid-child:nth-child(3n+1) {
margin-left: 0;
}
}
@media screen and (max-width: 991px) and (min-width: 768px) {
.responsive-columns-3-2-1 {
padding: 0;
}
.responsive-columns-3-2-1 > .grid-child {
width: var(--breakpoint-two-column-width);
padding-top: var(--breakpoint-two-column-height);
margin: var(--breakpoint-gutter-width);
}
.responsive-columns-3-2-1 > .grid-child:nth-child(2n) {
margin-right: 0;
}
.responsive-columns-3-2-1 > .grid-child:nth-child(2n+1) {
margin-left: 0;
}
}
@media screen and (max-width: 767px) {
.responsive-columns-3-2-1 {
margin: 0 -28px;
width: 100vw;
}
.responsive-columns-3-2-1 > .grid-child {
width: 100%;
padding-top: var(--breakpoint-one-column-height);
margin: var(--breakpoint-gutter-width) 0;
}
}
</style>
<div class="image-selector-tile-container responsive-columns-3-2-1 grid-container">
<template id="enrollmentsTemplate" is="dom-repeat" items="[[images]]">
<d2l-image-selector-tile image="[[item]]" organization="[[organization]]" class="grid-child"></d2l-image-selector-tile>
</template>
</div>
</template>
</dom-module><dom-module id="d2l-basic-image-selector">
<template strip-whitespace="">
<style>
#image-search{
width: 50%;
}
.no-results-search-text {
font-weight: bolder;
word-wrap: break-word;
}
.no-results-text {
font-size: 1.5rem;
margin-bottom: 12px;
}
.top-section {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 45px;
}
div.upload {
cursor: pointer;
}
.upload-text {
margin-left: 5px;
}
.upload:focus .upload-text,
.upload:hover .upload-text,
.upload:focus .upload-icon,
.upload:hover .upload-icon {
text-decoration: underline;
color: var(--d2l-color-celestine);
}
#lazyLoadSpinner {
display: block;
margin: auto;
margin-bottom: 30px;
}
#lazyLoadSpinner.d2l-basic-image-selector-hidden {
display: none;
}
</style>
<div class="top-section">
<d2l-search-widget id="image-search" search-action="[[_searchAction]]" search-label="[[localize('search')]]" placeholder-text="[[localize('search')]]" search-field-name="search">
</d2l-search-widget>
<template is="dom-if" if="[[_organizationChangeImageHref]]" restamp="true">
<div role="button" tabindex="0" class="upload" on-tap="_handleUpload" on-keydown="_handleUpload">
<d2l-icon class="upload-icon" icon="tier2:upload" aria-hidden="true"></d2l-icon>
<span class="upload-text">[[localize('upload')]]</span>
</div>
</template>
</div>
<template is="dom-if" if="[[_showGrid]]">
<d2l-image-tile-grid id="image-grid" organization="[[organization]]" images="[[_images]]"></d2l-image-tile-grid>
</template>
<template is="dom-if" if="[[!_showGrid]]">
<div class="no-results-area">
<div class="no-results-text">
<span>[[_noResultsTextStart]]</span><span class="no-results-search-text">[[_noResultsTextMid]]</span><span>[[_noResultsTextEnd]]</span>
</div>
[[localize('images_pleaseModify')]]
</div>
</template>
<d2l-loading-spinner id="lazyLoadSpinner" class$="[[_loadingSpinnerClass]]" size="100">
</d2l-loading-spinner>
</template>
</dom-module><custom-style>
<style is="custom-style">html {
--d2l-body-standard-text_-_font-size: 0.95rem; --d2l-body-standard-text_-_font-weight: 400; --d2l-body-standard-text_-_line-height: 1.4rem;;
--d2l-body-compact-text_-_font-size: 0.8rem; --d2l-body-compact-text_-_font-weight: 400; --d2l-body-compact-text_-_line-height: 1.2rem;;
--d2l-body-small-text_-_color: var(--d2l-color-tungsten); --d2l-body-small-text_-_font-size: 0.7rem; --d2l-body-small-text_-_font-weight: 400; --d2l-body-small-text_-_line-height: 1rem; --d2l-body-small-text_-_margin: auto;;
--d2l-heading-1_-_font-size: 2rem; --d2l-heading-1_-_font-weight: 400; --d2l-heading-1_-_line-height: 2.4rem; --d2l-heading-1_-_margin: 1.5rem 0 1.5rem 0;;
--d2l-heading-2_-_font-size: 1.5rem; --d2l-heading-2_-_font-weight: 400; --d2l-heading-2_-_line-height: 1.8rem; --d2l-heading-2_-_margin: 1.5rem 0 1.5rem 0;;
--d2l-heading-3_-_font-size: 1rem; --d2l-heading-3_-_font-weight: 700; --d2l-heading-3_-_line-height: 1.5rem; --d2l-heading-3_-_margin: 1.5rem 0 1.5rem 0;;
--d2l-heading-4_-_font-size: 0.8rem; --d2l-heading-4_-_font-weight: 700; --d2l-heading-4_-_line-height: 1.2rem; --d2l-heading-4_-_margin: 1.5rem 0 1.5rem 0;;
--d2l-label-text_-_font-size: 0.7rem; --d2l-label-text_-_line-height: 1rem; --d2l-label-text_-_font-weight: 700; --d2l-label-text_-_letter-spacing: 0.2px;;
}
</style>
</custom-style><dom-module id="d2l-image-banner-overlay-styles">
<template strip-whitespace="">
<style>
:host {
height: 100%;
left: 0;
word-wrap: break-word; /* IE/Edge */
overflow-wrap: break-word; /* replaces 'word-wrap' in Firefox, Chrome, Safari */
position: absolute;
top: 0;
width: 100%;
z-index: 1;
@apply --d2l-body-standard-text;
}
.d2l-image-banner-overlay-content {
display: none;
height: 100%;
opacity: 0;
overflow: hidden;
width: 100%;
}
.d2l-image-banner-overlay-content-shown {
animation-duration: 1.2s;
animation-fill-mode: forwards;
animation-name: shown;
display: block;
}
@keyframes shown {
0% { opacity: 0 }
100% { opacity: 1; }
}
.d2l-image-banner-course-name {
background: linear-gradient(rgba(0,0,0,0), #000 120%);
bottom: 0;
max-height: 100%;
padding-top: 3.5rem;
position: absolute;
transform: scale3d(1,1,1);
width: 100%;
}
@supports (-webkit-line-clamp: 2) {
.d2l-image-banner-course-name {
background: linear-gradient(rgba(0, 0, 0, 0), #000 267px);
padding-top: 3.35rem;
}
}
#bannerTitle {
box-sizing: border-box;
color: white;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
display: -webkit-box;
margin-top: 0;
overflow: hidden;
padding-top: 0;
padding-bottom: 0;
pointer-events: none;
text-shadow: 0 0 3px rgba(0,0,0,.2);
@apply --d2l-heading-1;
}
d2l-dropdown-more,
#bannerTitle {
margin-left: 2.439%;
margin-right: 2.439%;
}
:host([department-banner-flag]) d2l-dropdown-more {
margin-left: 10px;
margin-right: 10px;
margin-top: 10px;
}
.loading-overlay-shown d2l-dropdown-more {
display: none;
}
@media (min-width: 1230px) {
:host(:not([department-banner-flag])) d2l-dropdown-more {
margin-left: 30px;
margin-right: 30px;
margin-top: 30px;
}
:host(:dir(rtl)) #bannerTitle.menu-exists {
padding-left: 50px;
padding-right: 0;
}
#bannerTitle.menu-exists {
padding-right: 50px;
}
}
@media (max-width: 615px) {
:host(:not([department-banner-flag])) d2l-dropdown-more {
margin-left: 15px;
margin-right: 15px;
margin-top: 15px;
}
#bannerTitle {
margin-left: 15px;
margin-right: 15px;
}
}
d2l-dropdown-more {
position: absolute;
right: 0;
}
d2l-dropdown-more[hidden] {
display: none;
}
:host(:dir(rtl)) d2l-dropdown-more {
left: 0;
right: auto;
}
:host(:dir(rtl)) #bannerTitle.menu-exists {
padding-left: 40px;
padding-right: 0;
}
#bannerTitle.menu-exists {
padding-right: 40px;
}
.d2l-image-banner-course-name-container {
height: 100%;
overflow: hidden;
pointer-events: none;
position: absolute;
width: 100%;
}
d2l-alert {
font-size: 1rem;
}
.d2l-image-banner-error-alert {
margin-left: 2%;
margin-right: 2%;
position: absolute;
top: 20px;
width: 95%;
}
.loading-overlay {
align-items: center;
display: flex;
height: 100%;
justify-content: center;
left: 0;
opacity: 0;
pointer-events: none;
position: absolute;
top: 0;
width: 100%;
}
.loading-overlay-shown .loading-overlay {
background-color: rgba(0, 0, 0, 0.4);
opacity: 1;
transition: opacity 0.5s 0.5s;
}
d2l-loading-spinner {
bottom: 0;
display: none;
left: 0;
margin: auto;
position: absolute;
right: 0;
top: 0;
z-index: 4;
}
.change-image-loading d2l-loading-spinner,
.loading-overlay-shown .loading-overlay d2l-loading-spinner {
display: flex;
}
.change-image-success d2l-loading-spinner,
.change-image-failure d2l-loading-spinner {
display: flex;
opacity: 0;
}
.icon-container {
display: none;
}
.change-image-loading .icon-container,
.change-image-success .icon-container,
.change-image-failure .icon-container {
align-items: center;
background-color: white;
border-radius: 100px;
border-style: none;
bottom: 0;
display: flex;
height: 80px;
justify-content: center;
left: 0;
margin: auto;
overflow: hidden;
position: absolute;
right: 0;
top: 0;
width: 80px;
}
@keyframes inner {
0% { transform: scale(1); }
15% { transform: scale(1.8); }
20% { transform: scale(1.5); }
100% { transform: scale(1.5); }
}
@keyframes container {
0% { height: 80px; width: 80px; }
70% { height: 80px; width: 80px; opacity: 1; }
90% { height: 100px; width: 100px; opacity: 0.4 }
100% { height: 20px; width: 20px; opacity: 0; }
}
.checkmark {
color: var(--d2l-color-olivine);
display: none;
}
.fail-icon {
color: #ffce51;
display: none;
}
.change-image-success,
.change-image-failure,
.change-image-loading {
pointer-events: none;
}
.change-image-success .checkmark,
.change-image-failure .fail-icon {
animation-duration: 1s;
animation-fill-mode: forwards;
animation-name: inner;
display: flex;
}
.change-image-success .icon-container,
.change-image-failure .icon-container {
animation-duration: 1s;
animation-fill-mode: forwards;
animation-name: container;
}
.change-image-loading .loading-overlay,
.change-image-success .loading-overlay,
.change-image-failure .loading-overlay {
background-color: rgba(0, 0, 0, 0.4);
display: block;
height: 100%;
opacity: 1;
position: relative;
width: 100%;
z-index: 2;
}
</style>
</template>
</dom-module><dom-module id="d2l-image-banner-overlay">
<template strip-whitespace="">
<style include="d2l-image-banner-overlay-styles"></style>
<div id="overlayContent" class="d2l-image-banner-overlay-content d2l-visible-on-ancestor-target">
<div class="d2l-image-banner-course-name-container">
<div class="d2l-image-banner-course-name">
<h1 id="bannerTitle">
<span hidden$="[[hideBannerTitle]]">[[bannerTitle]]</span>
<d2l-offscreen hidden$="[[!hideBannerTitle]]">[[bannerTitle]]</d2l-offscreen>
</h1>
</div>
</div>
<d2l-dropdown-more class="d2l-focusable" hidden$="[[!_showDropdown]]" text="[[localize('bannerSettings')]]" translucent="" visible-on-ancestor="">
<d2l-dropdown-menu>
<d2l-menu label$="[[localize('bannerSettings')]]">
<d2l-menu-item id="change-image-button" hidden$="[[!_showChangeImageMenuItem]]" text="[[localize('changeImage')]]" on-d2l-menu-item-select="_launchCourseTileImageSelector">
</d2l-menu-item>
<d2l-menu-item hidden$="[[!canChangeBannerTitle]]" text="[[localize('customizeBannerText')]]" on-d2l-menu-item-select="_changeBannerTitle">
</d2l-menu-item>
<d2l-menu-item id="opt-out-button" hidden$="[[!_showRemoveBannerMenuItem]]" text="[[localize('removeBanner')]]" on-d2l-menu-item-select="_toggleCourseBanner">
</d2l-menu-item>
</d2l-menu>
</d2l-dropdown-menu>
</d2l-dropdown-more>
<div class="loading-overlay">
<d2l-loading-spinner size="100"></d2l-loading-spinner>
<div class="icon-container">
<d2l-icon class$="[[_iconDetails.className]]" icon="[[_iconDetails.iconName]]"></d2l-icon>
</div>
</div>
</div>
<d2l-dialog-fullscreen id="basic-image-selector-overlay" title-text="[[localize('changeImage')]]">
<d2l-basic-image-selector image-catalog-location="[[imageCatalogLocation]]" organization="[[_organization]]" course-image-upload-cb="[[courseImageUploadCb]]">
</d2l-basic-image-selector>
<div id="scrollThreshold" style="height: 1px"></div>
</d2l-dialog-fullscreen>
<d2l-alert id="optBackInAlert" hidden$="[[!_showBannerRemovedAlert]]" button-text="[[localize('undo')]]" has-close-button="true" role="alert">
<span id="bannerRemovedMenuAlertText">[[localize('bannerRemovedMenu')]]</span>
</d2l-alert>
<d2l-alert id="errorAlert" hidden$="[[!_showBannerErrorAlert]]" has-close-button="true" role="alert" type="error">
<span>[[_errorAlertStart]]</span><d2l-link href="javascript:window.location.reload(true)">[[localize('refreshAndTryAgain')]]</d2l-link><span>[[_errorAlertEnd]]</span>
</d2l-alert>
<d2l-alert hidden$="[[!_showErrorLoadingBannerImage]]" class="d2l-image-banner-error-alert" type="error">
<span>[[localize('imageLoadingError')]]</span>
</d2l-alert>
</template>
</dom-module><dom-module id="d2l-search-listbox">
<template strip-whitespace="">
<style>
:host {
box-sizing: border-box;
display: block;
width: 100%;
}
::slotted(div) {
box-sizing: border-box;
border-top: 1px solid transparent;
border-bottom: 1px solid var(--d2l-color-gypsum);
list-style-type: none;
width: calc(100% - 2px);
padding: 0.75rem 1.5rem;
cursor: pointer;
outline: none;
}
::slotted(div:last-of-type) {
border-bottom-color: transparent;
}
::slotted(*:not([disabled]):focus),
::slotted(*:not([disabled]):hover) {
background-color: var(--d2l-color-celestine-plus-2);
border-top-color: var(--d2l-color-celestine);
border-bottom-color: var(--d2l-color-celestine);
color: var(--d2l-color-celestine-minus-1);
}
::slotted([data-list-title]) {
padding-top: 1rem;
padding-bottom: 1rem;
margin: 0 !important;
cursor: default;
border-bottom-color: var(--d2l-color-mica);
}
::slotted([data-list-title]+div) {
background: -moz-linear-gradient(to top, white, var(--d2l-color-regolith));
background: -webkit-linear-gradient(to top, white, var(--d2l-color-regolith));
background: linear-gradient(to top, white, var(--d2l-color-regolith));
}
</style>
<slot></slot>
</template>
</dom-module></head>
<body class="d2l-body d2l-typography vui-typography d2l-tiles-container daylight">
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=G-PDG4BGM9SH" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript><header><nav class="d2l-navigation-s d2l-branding-navigation-light-foreground-color d2l-navigation-s-linkarea-has-color"><d2l-labs-navigation has-skip-nav=""><d2l-labs-navigation-main-header><div class="d2l-labs-navigation-header-left" slot="left"><div class="d2l-navigation-s-header-open-button-wrapper"><d2l-labs-navigation-button-icon icon="tier3:menu-hamburger" text="Menu" text-hidden="" tooltip-offset="0"></d2l-labs-navigation-button-icon></div><div class="d2l-navigation-s-header-logo-area"><d2l-labs-navigation-link-icon class="d2l-navigation-s-home-icon" text="My Home" href="/d2l/lp/ouHome/defaultHome.d2l" text-hidden="" icon="tier1:home" tooltip-offset="0"></d2l-labs-navigation-link-icon><d2l-labs-navigation-separator class="d2l-navigation-s-logo-divider"></d2l-labs-navigation-separator><d2l-labs-navigation-link-image class="d2l-navigation-s-logo" src="/d2l/lp/navbars/6606/theme/viewimage/14083/view?v=20.26.2.21397" text="University of Maine at Augusta" href="/d2l/lp/ouHome/home.d2l?ou=6662" slim="" tooltip-offset="0"></d2l-labs-navigation-link-image><d2l-labs-navigation-separator class="d2l-navigation-s-title-divider"></d2l-labs-navigation-separator><div class="d2l-navigation-s-title-container"><a class="d2l-navigation-s-link" href="/d2l/home/6662" title="University of Maine at Augusta">University of Maine at Augusta</a></div></div></div><div class="d2l-labs-navigation-header-right" slot="right"><div class="d2l-navigation-s-course-menu"><d2l-labs-navigation-dropdown-button-icon icon="tier3:classes" text="Select a course..." no-auto-open="" tooltip-offset="0" data-prl="/d2l/lp/courseSelector/6662/InitPartial" data-prid="d2l_1_18_653"><d2l-dropdown-content max-width="800" min-width="450" no-padding="" vertical-offset="0" popover="manual" dropdown-content=""><div id="d2l_1_18_653" class="d2l-placeholder d2l-placeholder-live" aria-live="assertive">
</div>
</d2l-dropdown-content></d2l-labs-navigation-dropdown-button-icon></div><d2l-labs-navigation-separator class="d2l-navigation-s-course-menu-divider"></d2l-labs-navigation-separator><div class="d2l-navigation-s-notifications"><div class="d2l-navigation-s-notifications-wrapper"><div class="d2l-navigation-s-notification" data-category="alerts" data-aria-message="You have new Subscriptions"><d2l-labs-navigation-dropdown-button-icon icon="tier3:discussions" text="Subscription alerts" no-auto-open="" tooltip-offset="0" data-prl="/d2l/NavigationArea/6662/ActivityFeed/GetAlertsDaylight?Category=0" data-prid="d2l_1_19_81"><d2l-dropdown-content no-padding="" vertical-offset="0" popover="manual" dropdown-content=""><div id="d2l_1_19_81" class="d2l-placeholder d2l-placeholder-live" aria-live="assertive">
</div>
</d2l-dropdown-content></d2l-labs-navigation-dropdown-button-icon></div><div class="d2l-navigation-s-notification" data-category="grades" data-aria-message="You have new Updates"><d2l-labs-navigation-dropdown-button-icon icon="tier3:notification-bell" text="Update alerts" no-auto-open="" tooltip-offset="0" has-notification="" notification-text="Update alerts - You have new alerts" data-prl="/d2l/NavigationArea/6662/ActivityFeed/GetAlertsDaylight?Category=1" data-prid="d2l_1_20_328"><d2l-dropdown-content no-padding="" vertical-offset="0" popover="manual" dropdown-content=""><div id="d2l_1_20_328" class="d2l-placeholder d2l-placeholder-live" aria-live="assertive">
</div>
</d2l-dropdown-content></d2l-labs-navigation-dropdown-button-icon></div></div><div class="d2l-navigation-s-notifications-div"></div></div><d2l-labs-navigation-separator class="d2l-navigation-s-notifications-divider"></d2l-labs-navigation-separator><div class="d2l-navigation-s-personal-menu"><d2l-labs-navigation-dropdown-button-custom opener-label="Brendan Gray, avatar"><span class="d2l-navigation-s-personal-menu-wrapper" slot="opener"><d2l-profile-image-base class="d2l-token-receiver" data-token-receiver-scope="core:*:*" href="/d2l/api/lp/1.7/profile/mncUBQPQbG/image?v=20.26.2.21397" first-name="Brendan" last-name="Gray" color-id="79921" size="medium" aria-hidden="true" style="--d2l-initials-background-color: #D13B7F;"></d2l-profile-image-base><span class="d2l-navigation-s-personal-menu-text">Brendan Gray</span></span><d2l-dropdown-content min-width="300" no-padding="" vertical-offset="0" popover="manual" dropdown-content=""><ul class="d2l-personal-tools-list"><li><div class="d2l-personal-tools-category-item d2l-personal-tools-category-item-first"><span style="white-space:nowrap;"><a class="d2l-link" aria-label="" href="/d2l/lp/profile/profile_edit.d2l?ou=6662" onclick="D2L.O("__g1",0)();">Profile</a>
</span></div></li><li class="d2l-personal-tools-category-item"><span style="white-space:nowrap;"><a class="d2l-link" aria-label="" href="/d2l/folio/main/Index" onclick="D2L.O("__g1",1)();">My Portfolio</a>
</span></li><li class="d2l-personal-tools-category-item"><span style="white-space:nowrap;"><a class="d2l-link" aria-label="" href="/d2l/Notifications/Settings?ou=6662" onclick="D2L.O("__g1",2)();">Notifications</a>
</span></li><li class="d2l-personal-tools-category-item d2l-personal-tools-category-item-last"><span style="white-space:nowrap;"><a class="d2l-link" aria-label="" href="/d2l/lp/preferences/preferences_main/preferences_main.d2l?ou=6662" onclick="D2L.O("__g1",1)();">Account Settings</a>
</span></li><li class="d2l-personal-tools-separated-item"><span style="white-space:nowrap;"><a class="d2l-link d2l_1_21_903" aria-label="" id="LocaleLinkId" href="javascript:void(0);" onclick="D2L.O("__g1",3)();return false;">English (United States)</a>
</span></li><li class="d2l-personal-tools-separated-item"><span style="white-space:nowrap;"><a class="d2l-link d2l_1_21_903" aria-label="" href="javascript:void(0);" onclick="D2L.O("__g1",4)();return false;">Log Out</a>
</span></li></ul></d2l-dropdown-content></d2l-labs-navigation-dropdown-button-custom></div><div class="d2l-navigation-s-admin-menu"><div class="d2l-navigation-s-admin-menu-spacer"></div><d2l-labs-navigation-dropdown-button-icon icon="tier3:gear" text="Admin Tools" no-auto-open="" tooltip-offset="0" data-prl="/d2l/lp/admintools/6662/dropdownpartial" data-prid="d2l_1_22_735"><d2l-dropdown-content max-width="960" min-width="200" no-padding="" vertical-offset="0" popover="manual" dropdown-content=""><div id="d2l_1_22_735" class="d2l-placeholder d2l-placeholder-live" aria-live="assertive">
</div>
</d2l-dropdown-content></d2l-labs-navigation-dropdown-button-icon></div></div></d2l-labs-navigation-main-header><d2l-labs-navigation-main-footer class="d2l-branding-navigation-background-color d2l-visible-on-ancestor-target"><div slot="main"><div class="d2l-navigation-s-main-wrapper" role="list"><div class="d2l-navigation-s-item" role="listitem"><a href="/d2l/lms/news/main.d2l?ou=6662" class="d2l-navigation-s-link">Announcements</a></div>
<div class="d2l-navigation-s-item" role="listitem"><a href="/d2l/le/discovery/view/" class="d2l-navigation-s-link">Discover</a></div>
<div class="d2l-navigation-s-item" role="listitem"><a href="/d2l/common/dialogs/quickLink/quickLink.d2l?ou=6662&type=lti&rcode=F3C7BF8F-5062-472E-BD78-1E9087192E9D-277&srcou=6606" data-popup-menubar="1" data-popup-toolbar="1" rel="noopener" class="d2l-navigation-s-link d2l-navigation-s-link-popup">My Media</a></div>
<div class="d2l-navigation-s-item" role="listitem"><d2l-dropdown><button class="d2l-navigation-s-group d2l-dropdown-opener" aria-expanded="false" aria-haspopup="true"><span class="d2l-navigation-s-group-wrapper"><span class="d2l-navigation-s-group-text">Help</span><d2l-icon icon="tier1:chevron-down"></d2l-icon></span></button><d2l-dropdown-menu popover="manual" dropdown-content=""><d2l-menu label="Help" class="d2l-menu-mvc" active="" aria-label="Help" role="menu">
<d2l-menu-item text="Student Brightspace Video Tutorials" class="d2l-navigation-s-menu-item-root" id="d2l_1_23_666" role="menuitem" tabindex="0" aria-disabled="false" aria-label="Student Brightspace Video Tutorials" first="true"></d2l-menu-item>
<d2l-menu-item text="IT Helpdesk" class="d2l-navigation-s-menu-item-root" id="d2l_1_24_427" role="menuitem" tabindex="-1" aria-disabled="false" aria-label="IT Helpdesk"></d2l-menu-item>
<d2l-menu-item-link text="System Check" href="/d2l/systemCheck" class="d2l-navigation-s-menu-item-root" role="menuitem" tabindex="-1" aria-disabled="false" aria-label="System Check" last="true"></d2l-menu-item-link>
</d2l-menu>
</d2l-dropdown-menu></d2l-dropdown>
</div>
<div class="d2l-navigation-s-item" role="listitem"><a href="/d2l/common/dialogs/quickLink/quickLink.d2l?ou=6662&type=lti&rcode=F3C7BF8F-5062-472E-BD78-1E9087192E9D-2399069&srcou=6606" data-popup-menubar="1" data-popup-toolbar="1" rel="noopener" class="d2l-navigation-s-link d2l-navigation-s-link-popup">Course Evaluations</a></div>
<div class="d2l-navigation-s-item d2l-navigation-s-more" role="listitem" data-hidden="1"><d2l-dropdown><button class="d2l-navigation-s-group d2l-dropdown-opener" aria-expanded="false" aria-haspopup="true"><span class="d2l-navigation-s-group-wrapper"><span class="d2l-navigation-s-group-text">More</span><d2l-icon icon="tier1:chevron-down"></d2l-icon></span></button><d2l-dropdown-menu popover="manual" dropdown-content=""><d2l-menu label="More" class="d2l-menu-mvc" active="" aria-label="More" role="menu">
<d2l-menu-item-link text="Announcements" href="/d2l/lms/news/main.d2l?ou=6662" class="d2l-navigation-s-menu-item-root d2l-hidden" role="menuitem" tabindex="0" aria-disabled="false" aria-label="Announcements" first="true"></d2l-menu-item-link>
<d2l-menu-item-link text="Discover" href="/d2l/le/discovery/view/" class="d2l-navigation-s-menu-item-root d2l-hidden" role="menuitem" tabindex="-1" aria-disabled="false" aria-label="Discover"></d2l-menu-item-link>
<d2l-menu-item text="My Media" class="d2l-navigation-s-menu-item-root d2l-hidden" id="d2l_1_25_533" role="menuitem" tabindex="-1" aria-disabled="false" aria-label="My Media"></d2l-menu-item>
<d2l-menu-item text="Help" class="d2l-navigation-s-menu-item-root d2l-hidden" role="menuitem" tabindex="-1" aria-disabled="false" aria-label="Help" aria-haspopup="true">
<d2l-menu class="d2l-menu-mvc d2l-navigation-s-menu-item-root" child-view="" role="menu" aria-label="Help">
<d2l-menu-item text="Student Brightspace Video Tutorials" id="d2l_1_26_434" role="menuitem" tabindex="-1" aria-disabled="false" aria-label="Student Brightspace Video Tutorials"></d2l-menu-item>
<d2l-menu-item text="IT Helpdesk" id="d2l_1_27_325" role="menuitem" tabindex="-1" aria-disabled="false" aria-label="IT Helpdesk"></d2l-menu-item>