@asd20/ui 3.2.417 → 3.2.420

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -5,7 +5,7 @@
5
5
  "*.scss",
6
6
  "*.vue"
7
7
  ],
8
- "version": "3.2.417",
8
+ "version": "3.2.420",
9
9
  "private": false,
10
10
  "license": "MIT",
11
11
  "repository": {
@@ -1,7 +1,10 @@
1
1
  <template>
2
2
  <div :class="classes">
3
- <div class="message-image" v-if="images && images.length > 0 && fullscreen">
4
- <img :src="images[0].url" alt />
3
+ <div
4
+ class="message-image"
5
+ v-if="images && images.length > 0 && messageImage && fullscreen"
6
+ >
7
+ <img :src="messageImage" alt />
5
8
  </div>
6
9
  <div class="asd20-messaging__content">
7
10
  <component
@@ -10,26 +13,18 @@
10
13
  :is="headingTagName"
11
14
  :id="hash"
12
15
  >
13
- <!-- <span v-html="heading"></span> -->
14
- <span>{{ heading }}</span>
16
+ <!-- <a :href="`#${hash}`">#</a> -->
17
+ <span v-html="heading"></span>
15
18
  </component>
16
- <!-- <div class="asd20-messaging__heading" v-if="heading">
17
- <span v-html="heading"></span>
18
- <span>{{ heading }}</span>
19
- </div> -->
20
- <div v-if="shortDescription" class="lead">
21
- <!-- <span v-text="shortDescription"></span> -->
22
- <span>{{ shortDescription }}</span>
19
+ <div v-if="shortDescription" class="lead short-description">
20
+ <span v-html="shortDescription"></span>
23
21
  <a v-if="detailLink" :href="detailLink">{{ detailLinkLabel }}</a>
24
22
  </div>
25
- <!-- <p
23
+ <p
26
24
  v-if="longDescription"
27
25
  class="long-description"
28
26
  v-html="longDescription"
29
- /> -->
30
- <p v-if="longDescription" class="long-description">
31
- >{{ longDescription }}
32
- </p>
27
+ />
33
28
  <div v-if="bodyContent" class="asd20-messaging__body-content">
34
29
  <component :is="dynamicComponent"></component>
35
30
  </div>
@@ -89,6 +84,22 @@ export default {
89
84
  template: `<div>${this.bodyContent}</div>`,
90
85
  }
91
86
  },
87
+ messageImage() {
88
+ // Get full image
89
+ const messageImages = Array.isArray(this.images) ? this.images : []
90
+
91
+ const coverImage = messageImages.find(i => i.isCover)
92
+ let messageImageUrl = null
93
+
94
+ if (coverImage) {
95
+ const coverImageFiles = coverImage.files || []
96
+ const coverImageFull = coverImageFiles.find(f => f.name === 'full')
97
+ messageImageUrl = coverImageFull
98
+ ? coverImageFull.url
99
+ : coverImage.url || ''
100
+ }
101
+ return messageImageUrl
102
+ },
92
103
  },
93
104
  }
94
105
  </script>
@@ -115,7 +115,7 @@ export default {
115
115
 
116
116
  .asd20-page-content {
117
117
  .notification-group--inline {
118
- margin: space(2) space(1) space(0) space(1);
118
+ margin: space(2) space(1) space(2) space(1);
119
119
  }
120
120
 
121
121
  .primary-messaging-section,
@@ -127,9 +127,9 @@ export default {
127
127
  background: var(--color__tertiary);
128
128
  }
129
129
 
130
- .asd20-messaging:not(:last-child) {
131
- margin-bottom: space(2);
132
- }
130
+ // .asd20-messaging:not(:last-child) {
131
+ // margin-bottom: space(2);
132
+ // }
133
133
 
134
134
  &--grid {
135
135
  .primary-messaging-section,
@@ -169,14 +169,14 @@ export default {
169
169
  @media (min-width: 1024px) {
170
170
  .asd20-page-content {
171
171
  .notification-group--inline {
172
- margin: space(2) space(3) space(-2) space(3);
172
+ margin: space(2) space(3) space(0) space(3);
173
173
  }
174
174
  .primary-messaging-section,
175
175
  .secondary-messaging-section {
176
176
  padding: space(2) space(3);
177
177
  &::v-deep > * {
178
178
  // flex: 1 1 var(--minimum-column-width);
179
- margin: space(2) space(1) !important;
179
+ margin: space(1) !important;
180
180
  }
181
181
  }
182
182
  }
@@ -246,7 +246,7 @@
246
246
  v-if="athleticsListItems.length > 0"
247
247
  :items="athleticsListItems"
248
248
  class="asd20-school-details__athletics-offerings"
249
- headline="Atheltics Offerings"
249
+ headline="Athletics Offerings"
250
250
  multi-column
251
251
  icon="athletics"
252
252
  />
@@ -199,10 +199,110 @@
199
199
  "translations": [],
200
200
  "images": [
201
201
  {
202
- "alt": "Kids leaving a school-bus",
203
- "url": "https://asd20websitestorage.blob.core.windows.net/website-files/message-images/bus-and-transportation-options/full/kids-leaving-a-school-bus_1200x800.jpg",
204
- "size": "full",
205
- "caption": ""
202
+ "files": [
203
+ {
204
+ "url": "https://asd20websitestorage.blob.core.windows.net/website-files/message-images/a-great-place-to-live/thumbnail-md/colorado_springs_250x250.jpg",
205
+ "name": "thumbnail-md",
206
+ "width": 250,
207
+ "height": 250,
208
+ "filename": "colorado_springs_250x250.jpg",
209
+ "filepath": "message-images/a-great-place-to-live/thumbnail-md/colorado_springs_250x250.jpg",
210
+ "filesize": 31651
211
+ },
212
+ {
213
+ "url": "https://asd20websitestorage.blob.core.windows.net/website-files/message-images/a-great-place-to-live/thumbnail-sm/colorado_springs_100x100.jpg",
214
+ "name": "thumbnail-sm",
215
+ "width": 100,
216
+ "height": 100,
217
+ "filename": "colorado_springs_100x100.jpg",
218
+ "filepath": "message-images/a-great-place-to-live/thumbnail-sm/colorado_springs_100x100.jpg",
219
+ "filesize": 3934
220
+ },
221
+ {
222
+ "url": "https://asd20websitestorage.blob.core.windows.net/website-files/message-images/a-great-place-to-live/thumbnail-xs/colorado_springs_50x50.jpg",
223
+ "name": "thumbnail-xs",
224
+ "width": 50,
225
+ "height": 50,
226
+ "filename": "colorado_springs_50x50.jpg",
227
+ "filepath": "message-images/a-great-place-to-live/thumbnail-xs/colorado_springs_50x50.jpg",
228
+ "filesize": 1849
229
+ },
230
+ {
231
+ "url": "https://asd20websitestorage.blob.core.windows.net/website-files/message-images/a-great-place-to-live/banner/colorado_springs_800x300.jpg",
232
+ "name": "banner",
233
+ "width": 800,
234
+ "height": 300,
235
+ "filename": "colorado_springs_800x300.jpg",
236
+ "filepath": "message-images/a-great-place-to-live/banner/colorado_springs_800x300.jpg",
237
+ "filesize": 106682
238
+ },
239
+ {
240
+ "url": "https://asd20websitestorage.blob.core.windows.net/website-files/message-images/a-great-place-to-live/full/colorado_springs_815x486.jpg",
241
+ "name": "full",
242
+ "width": 815,
243
+ "height": 486,
244
+ "filename": "colorado_springs_815x486.jpg",
245
+ "filepath": "message-images/a-great-place-to-live/full/colorado_springs_815x486.jpg",
246
+ "filesize": 171481
247
+ }
248
+ ],
249
+ "isCover": false,
250
+ "metadata": {
251
+ "alt": "Pike's Peak as seen from Garden of the Gods."
252
+ }
253
+ },
254
+ {
255
+ "files": [
256
+ {
257
+ "url": "https://asd20websitestorage.blob.core.windows.net/website-files/message-images/a-great-place-to-live/thumbnail-md/PIES_teacher_250x250.jpg",
258
+ "name": "thumbnail-md",
259
+ "width": 250,
260
+ "height": 250,
261
+ "filename": "PIES_teacher_250x250.jpg",
262
+ "filepath": "message-images/a-great-place-to-live/thumbnail-md/PIES_teacher_250x250.jpg",
263
+ "filesize": 28287
264
+ },
265
+ {
266
+ "url": "https://asd20websitestorage.blob.core.windows.net/website-files/message-images/a-great-place-to-live/thumbnail-sm/PIES_teacher_100x100.jpg",
267
+ "name": "thumbnail-sm",
268
+ "width": 100,
269
+ "height": 100,
270
+ "filename": "PIES_teacher_100x100.jpg",
271
+ "filepath": "message-images/a-great-place-to-live/thumbnail-sm/PIES_teacher_100x100.jpg",
272
+ "filesize": 3752
273
+ },
274
+ {
275
+ "url": "https://asd20websitestorage.blob.core.windows.net/website-files/message-images/a-great-place-to-live/thumbnail-xs/PIES_teacher_50x50.jpg",
276
+ "name": "thumbnail-xs",
277
+ "width": 50,
278
+ "height": 50,
279
+ "filename": "PIES_teacher_50x50.jpg",
280
+ "filepath": "message-images/a-great-place-to-live/thumbnail-xs/PIES_teacher_50x50.jpg",
281
+ "filesize": 1875
282
+ },
283
+ {
284
+ "url": "https://asd20websitestorage.blob.core.windows.net/website-files/message-images/a-great-place-to-live/banner/PIES_teacher_800x300.jpg",
285
+ "name": "banner",
286
+ "width": 800,
287
+ "height": 300,
288
+ "filename": "PIES_teacher_800x300.jpg",
289
+ "filepath": "message-images/a-great-place-to-live/banner/PIES_teacher_800x300.jpg",
290
+ "filesize": 81515
291
+ },
292
+ {
293
+ "url": "https://asd20websitestorage.blob.core.windows.net/website-files/message-images/bus-and-transportation-options/full/kids-leaving-a-school-bus_1200x800.jpg",
294
+ "name": "full",
295
+ "width": 1280,
296
+ "height": 852,
297
+ "filename": "PIES_teacher_1280x852.jpg",
298
+ "filepath": "message-images/a-great-place-to-live/full/PIES_teacher_1280x852.jpg",
299
+ "filesize": 318555
300
+ }
301
+ ],
302
+ "isCover": true,
303
+ "metadata": {
304
+ "alt": ""
305
+ }
206
306
  }
207
307
  ],
208
308
  "callsToAction": null,
@@ -248,10 +348,110 @@
248
348
  ],
249
349
  "images": [
250
350
  {
251
- "alt": "Kids sitting in a classroom",
252
- "url": "https://asd20websitestorage.blob.core.windows.net/website-files/message-images/academics/full/ctms_hero_1280x834.jpg",
253
- "size": "full",
254
- "caption": ""
351
+ "files": [
352
+ {
353
+ "url": "https://asd20websitestorage.blob.core.windows.net/website-files/message-images/a-great-place-to-live/thumbnail-md/colorado_springs_250x250.jpg",
354
+ "name": "thumbnail-md",
355
+ "width": 250,
356
+ "height": 250,
357
+ "filename": "colorado_springs_250x250.jpg",
358
+ "filepath": "message-images/a-great-place-to-live/thumbnail-md/colorado_springs_250x250.jpg",
359
+ "filesize": 31651
360
+ },
361
+ {
362
+ "url": "https://asd20websitestorage.blob.core.windows.net/website-files/message-images/a-great-place-to-live/thumbnail-sm/colorado_springs_100x100.jpg",
363
+ "name": "thumbnail-sm",
364
+ "width": 100,
365
+ "height": 100,
366
+ "filename": "colorado_springs_100x100.jpg",
367
+ "filepath": "message-images/a-great-place-to-live/thumbnail-sm/colorado_springs_100x100.jpg",
368
+ "filesize": 3934
369
+ },
370
+ {
371
+ "url": "https://asd20websitestorage.blob.core.windows.net/website-files/message-images/a-great-place-to-live/thumbnail-xs/colorado_springs_50x50.jpg",
372
+ "name": "thumbnail-xs",
373
+ "width": 50,
374
+ "height": 50,
375
+ "filename": "colorado_springs_50x50.jpg",
376
+ "filepath": "message-images/a-great-place-to-live/thumbnail-xs/colorado_springs_50x50.jpg",
377
+ "filesize": 1849
378
+ },
379
+ {
380
+ "url": "https://asd20websitestorage.blob.core.windows.net/website-files/message-images/a-great-place-to-live/banner/colorado_springs_800x300.jpg",
381
+ "name": "banner",
382
+ "width": 800,
383
+ "height": 300,
384
+ "filename": "colorado_springs_800x300.jpg",
385
+ "filepath": "message-images/a-great-place-to-live/banner/colorado_springs_800x300.jpg",
386
+ "filesize": 106682
387
+ },
388
+ {
389
+ "url": "https://asd20websitestorage.blob.core.windows.net/website-files/message-images/a-great-place-to-live/full/colorado_springs_815x486.jpg",
390
+ "name": "full",
391
+ "width": 815,
392
+ "height": 486,
393
+ "filename": "colorado_springs_815x486.jpg",
394
+ "filepath": "message-images/a-great-place-to-live/full/colorado_springs_815x486.jpg",
395
+ "filesize": 171481
396
+ }
397
+ ],
398
+ "isCover": false,
399
+ "metadata": {
400
+ "alt": "Pike's Peak as seen from Garden of the Gods."
401
+ }
402
+ },
403
+ {
404
+ "files": [
405
+ {
406
+ "url": "https://asd20websitestorage.blob.core.windows.net/website-files/message-images/a-great-place-to-live/thumbnail-md/PIES_teacher_250x250.jpg",
407
+ "name": "thumbnail-md",
408
+ "width": 250,
409
+ "height": 250,
410
+ "filename": "PIES_teacher_250x250.jpg",
411
+ "filepath": "message-images/a-great-place-to-live/thumbnail-md/PIES_teacher_250x250.jpg",
412
+ "filesize": 28287
413
+ },
414
+ {
415
+ "url": "https://asd20websitestorage.blob.core.windows.net/website-files/message-images/a-great-place-to-live/thumbnail-sm/PIES_teacher_100x100.jpg",
416
+ "name": "thumbnail-sm",
417
+ "width": 100,
418
+ "height": 100,
419
+ "filename": "PIES_teacher_100x100.jpg",
420
+ "filepath": "message-images/a-great-place-to-live/thumbnail-sm/PIES_teacher_100x100.jpg",
421
+ "filesize": 3752
422
+ },
423
+ {
424
+ "url": "https://asd20websitestorage.blob.core.windows.net/website-files/message-images/a-great-place-to-live/thumbnail-xs/PIES_teacher_50x50.jpg",
425
+ "name": "thumbnail-xs",
426
+ "width": 50,
427
+ "height": 50,
428
+ "filename": "PIES_teacher_50x50.jpg",
429
+ "filepath": "message-images/a-great-place-to-live/thumbnail-xs/PIES_teacher_50x50.jpg",
430
+ "filesize": 1875
431
+ },
432
+ {
433
+ "url": "https://asd20websitestorage.blob.core.windows.net/website-files/message-images/a-great-place-to-live/banner/PIES_teacher_800x300.jpg",
434
+ "name": "banner",
435
+ "width": 800,
436
+ "height": 300,
437
+ "filename": "PIES_teacher_800x300.jpg",
438
+ "filepath": "message-images/a-great-place-to-live/banner/PIES_teacher_800x300.jpg",
439
+ "filesize": 81515
440
+ },
441
+ {
442
+ "url": "https://asd20websitestorage.blob.core.windows.net/website-files/message-images/academics/full/ctms_hero_1280x834.jpg",
443
+ "name": "full",
444
+ "width": 1280,
445
+ "height": 852,
446
+ "filename": "PIES_teacher_1280x852.jpg",
447
+ "filepath": "message-images/a-great-place-to-live/full/PIES_teacher_1280x852.jpg",
448
+ "filesize": 318555
449
+ }
450
+ ],
451
+ "isCover": true,
452
+ "metadata": {
453
+ "alt": ""
454
+ }
255
455
  }
256
456
  ],
257
457
  "videos": []
@@ -283,10 +483,110 @@
283
483
  ],
284
484
  "images": [
285
485
  {
286
- "alt": "Kids walking in a hallway",
287
- "url": "https://asd20websitestorage.blob.core.windows.net/website-files/message-images/defining-excellence/full/rhs_graduation_1200x960.jpg",
288
- "size": "full",
289
- "caption": ""
486
+ "files": [
487
+ {
488
+ "url": "https://asd20websitestorage.blob.core.windows.net/website-files/message-images/a-great-place-to-live/thumbnail-md/colorado_springs_250x250.jpg",
489
+ "name": "thumbnail-md",
490
+ "width": 250,
491
+ "height": 250,
492
+ "filename": "colorado_springs_250x250.jpg",
493
+ "filepath": "message-images/a-great-place-to-live/thumbnail-md/colorado_springs_250x250.jpg",
494
+ "filesize": 31651
495
+ },
496
+ {
497
+ "url": "https://asd20websitestorage.blob.core.windows.net/website-files/message-images/a-great-place-to-live/thumbnail-sm/colorado_springs_100x100.jpg",
498
+ "name": "thumbnail-sm",
499
+ "width": 100,
500
+ "height": 100,
501
+ "filename": "colorado_springs_100x100.jpg",
502
+ "filepath": "message-images/a-great-place-to-live/thumbnail-sm/colorado_springs_100x100.jpg",
503
+ "filesize": 3934
504
+ },
505
+ {
506
+ "url": "https://asd20websitestorage.blob.core.windows.net/website-files/message-images/a-great-place-to-live/thumbnail-xs/colorado_springs_50x50.jpg",
507
+ "name": "thumbnail-xs",
508
+ "width": 50,
509
+ "height": 50,
510
+ "filename": "colorado_springs_50x50.jpg",
511
+ "filepath": "message-images/a-great-place-to-live/thumbnail-xs/colorado_springs_50x50.jpg",
512
+ "filesize": 1849
513
+ },
514
+ {
515
+ "url": "https://asd20websitestorage.blob.core.windows.net/website-files/message-images/a-great-place-to-live/banner/colorado_springs_800x300.jpg",
516
+ "name": "banner",
517
+ "width": 800,
518
+ "height": 300,
519
+ "filename": "colorado_springs_800x300.jpg",
520
+ "filepath": "message-images/a-great-place-to-live/banner/colorado_springs_800x300.jpg",
521
+ "filesize": 106682
522
+ },
523
+ {
524
+ "url": "https://asd20websitestorage.blob.core.windows.net/website-files/message-images/a-great-place-to-live/full/colorado_springs_815x486.jpg",
525
+ "name": "full",
526
+ "width": 815,
527
+ "height": 486,
528
+ "filename": "colorado_springs_815x486.jpg",
529
+ "filepath": "message-images/a-great-place-to-live/full/colorado_springs_815x486.jpg",
530
+ "filesize": 171481
531
+ }
532
+ ],
533
+ "isCover": false,
534
+ "metadata": {
535
+ "alt": "Pike's Peak as seen from Garden of the Gods."
536
+ }
537
+ },
538
+ {
539
+ "files": [
540
+ {
541
+ "url": "https://asd20websitestorage.blob.core.windows.net/website-files/message-images/a-great-place-to-live/thumbnail-md/PIES_teacher_250x250.jpg",
542
+ "name": "thumbnail-md",
543
+ "width": 250,
544
+ "height": 250,
545
+ "filename": "PIES_teacher_250x250.jpg",
546
+ "filepath": "message-images/a-great-place-to-live/thumbnail-md/PIES_teacher_250x250.jpg",
547
+ "filesize": 28287
548
+ },
549
+ {
550
+ "url": "https://asd20websitestorage.blob.core.windows.net/website-files/message-images/a-great-place-to-live/thumbnail-sm/PIES_teacher_100x100.jpg",
551
+ "name": "thumbnail-sm",
552
+ "width": 100,
553
+ "height": 100,
554
+ "filename": "PIES_teacher_100x100.jpg",
555
+ "filepath": "message-images/a-great-place-to-live/thumbnail-sm/PIES_teacher_100x100.jpg",
556
+ "filesize": 3752
557
+ },
558
+ {
559
+ "url": "https://asd20websitestorage.blob.core.windows.net/website-files/message-images/a-great-place-to-live/thumbnail-xs/PIES_teacher_50x50.jpg",
560
+ "name": "thumbnail-xs",
561
+ "width": 50,
562
+ "height": 50,
563
+ "filename": "PIES_teacher_50x50.jpg",
564
+ "filepath": "message-images/a-great-place-to-live/thumbnail-xs/PIES_teacher_50x50.jpg",
565
+ "filesize": 1875
566
+ },
567
+ {
568
+ "url": "https://asd20websitestorage.blob.core.windows.net/website-files/message-images/a-great-place-to-live/banner/PIES_teacher_800x300.jpg",
569
+ "name": "banner",
570
+ "width": 800,
571
+ "height": 300,
572
+ "filename": "PIES_teacher_800x300.jpg",
573
+ "filepath": "message-images/a-great-place-to-live/banner/PIES_teacher_800x300.jpg",
574
+ "filesize": 81515
575
+ },
576
+ {
577
+ "url": "https://asd20websitestorage.blob.core.windows.net/website-files/message-images/defining-excellence/full/rhs_graduation_1200x960.jpg",
578
+ "name": "full",
579
+ "width": 1280,
580
+ "height": 852,
581
+ "filename": "PIES_teacher_1280x852.jpg",
582
+ "filepath": "message-images/a-great-place-to-live/full/PIES_teacher_1280x852.jpg",
583
+ "filesize": 318555
584
+ }
585
+ ],
586
+ "isCover": true,
587
+ "metadata": {
588
+ "alt": ""
589
+ }
290
590
  }
291
591
  ],
292
592
  "videos": []
@@ -443,7 +743,9 @@
443
743
  "firstName": "Kolette"
444
744
  }
445
745
  ],
446
- "educationLevels": [""],
746
+ "educationLevels": [
747
+ ""
748
+ ],
447
749
  "email": "",
448
750
  "facebook": "",
449
751
  "feederOrganizations": [],
@@ -1127,28 +1429,36 @@
1127
1429
  {
1128
1430
  "id": "e42b7fa0-dfc8-11e9-aa9a-c9531994681f",
1129
1431
  "title": "Academy Endeavor Elementary School",
1130
- "educationLevels": ["Elementary"],
1432
+ "educationLevels": [
1433
+ "Elementary"
1434
+ ],
1131
1435
  "logoImageUrl": "",
1132
1436
  "website": "https://academyendeavour.asd20.org"
1133
1437
  },
1134
1438
  {
1135
1439
  "id": "e3822bd0-dfbe-11e9-82ec-bb736b64c142",
1136
1440
  "title": "Liberty High School",
1137
- "educationLevels": ["High"],
1441
+ "educationLevels": [
1442
+ "High"
1443
+ ],
1138
1444
  "logoImageUrl": "",
1139
1445
  "website": "https://liberty.asd20.org"
1140
1446
  },
1141
1447
  {
1142
1448
  "id": "70831070-df0c-11e9-aa62-7d696c10b1f7",
1143
1449
  "title": "Pine Creek High School",
1144
- "educationLevels": ["High"],
1450
+ "educationLevels": [
1451
+ "High"
1452
+ ],
1145
1453
  "logoImageUrl": "",
1146
1454
  "website": "https://pinecreek.asd20.org"
1147
1455
  },
1148
1456
  {
1149
1457
  "id": "6080dbd0-df0c-11e9-aa62-7d696c10b1f7",
1150
1458
  "title": "Air Academy High School",
1151
- "educationLevels": ["High"],
1459
+ "educationLevels": [
1460
+ "High"
1461
+ ],
1152
1462
  "logoImageUrl": "",
1153
1463
  "website": "https://airacademy.asd20.org"
1154
1464
  },
@@ -1169,287 +1479,408 @@
1169
1479
  {
1170
1480
  "id": "46ac38ca-abec-447c-737e-d8f41d1384b6",
1171
1481
  "title": "Challenger Middle School",
1172
- "educationLevels": ["Middle"],
1482
+ "educationLevels": [
1483
+ "Middle"
1484
+ ],
1173
1485
  "logoImageUrl": "https://challenger.asd20.org/PublishingImages/Cheetah%20Head%20Logo%20new.png",
1174
1486
  "website": "https://challenger.asd20.org"
1175
1487
  },
1176
1488
  {
1177
1489
  "id": "4782fd99-dca3-3194-2070-e63ce911ec2e",
1178
1490
  "title": "Challenger Middle School",
1179
- "educationLevels": ["Middle"],
1491
+ "educationLevels": [
1492
+ "Middle"
1493
+ ],
1180
1494
  "logoImageUrl": "https://challenger.asd20.org/PublishingImages/Cheetah%20Head%20Logo%20new.png",
1181
1495
  "website": "https://challenger.asd20.org"
1182
1496
  },
1183
1497
  {
1184
1498
  "id": "16e030f4-bb49-cae0-1fa4-7da479969f36",
1185
1499
  "title": "Discovery Canyon Campus Middle School",
1186
- "educationLevels": ["Middle"],
1500
+ "educationLevels": [
1501
+ "Middle"
1502
+ ],
1187
1503
  "logoImageUrl": "https://dccmiddle.asd20.org/PublishingImages/DCCThunder%20logo.jpg",
1188
1504
  "website": "https://dccmiddle.asd20.org"
1189
1505
  },
1190
1506
  {
1191
1507
  "id": "822c3419-b5b8-ba03-d552-62d7be20c04b",
1192
1508
  "title": "High Plains Elementary School",
1193
- "educationLevels": ["Elementary", "Kindergarten", "Preschool"],
1509
+ "educationLevels": [
1510
+ "Elementary",
1511
+ "Kindergarten",
1512
+ "Preschool"
1513
+ ],
1194
1514
  "logoImageUrl": "https://highplains.asd20.org/PublishingImages/circularlogo_web.png",
1195
1515
  "website": "https://highplains.asd20.org"
1196
1516
  },
1197
1517
  {
1198
1518
  "id": "74fb8b41-ab25-c7d4-b92f-77628213ee46",
1199
1519
  "title": "Liberty High School",
1200
- "educationLevels": ["High"],
1520
+ "educationLevels": [
1521
+ "High"
1522
+ ],
1201
1523
  "logoImageUrl": "https://liberty.asd20.org/PublishingImages/Lancer%20Crest%20colorsmall.jpg",
1202
1524
  "website": "https://liberty.asd20.org"
1203
1525
  },
1204
1526
  {
1205
1527
  "id": "fdeabd52-6c47-1d40-05a2-600ec36bacd9",
1206
1528
  "title": "Mountain Ridge Middle School",
1207
- "educationLevels": ["Middle"],
1529
+ "educationLevels": [
1530
+ "Middle"
1531
+ ],
1208
1532
  "logoImageUrl": "https://mountainridge.asd20.org/PublishingImages/MRMSlogoIB.jpg",
1209
1533
  "website": "https://mountainridge.asd20.org"
1210
1534
  },
1211
1535
  {
1212
1536
  "id": "ff4748b4-c372-cb2c-4dca-49a6dd99c2d6",
1213
1537
  "title": "New Summit Charter Academy Elementary School",
1214
- "educationLevels": ["Kindergarten", "Preschool", "Elementary"],
1538
+ "educationLevels": [
1539
+ "Kindergarten",
1540
+ "Preschool",
1541
+ "Elementary"
1542
+ ],
1215
1543
  "logoImageUrl": "https://asd20websitestorage.blob.core.windows.net/asd20-images/school-logos/NSCA-Logo.png",
1216
1544
  "website": "https://newsummitcharter.org"
1217
1545
  },
1218
1546
  {
1219
1547
  "id": "3ace095e-c792-6fa8-3299-a0db26db81dd",
1220
1548
  "title": "Pine Creek High School",
1221
- "educationLevels": ["High"],
1549
+ "educationLevels": [
1550
+ "High"
1551
+ ],
1222
1552
  "logoImageUrl": "https://pinecreek.asd20.org/PublishingImages/Pine%20Creek%20High%20School%20Eagle.jpg",
1223
1553
  "website": "https://pinecreek.asd20.org"
1224
1554
  },
1225
1555
  {
1226
1556
  "id": "2a47254c-89ad-ce5e-156b-e44bec9452d1",
1227
1557
  "title": "Rampart High School",
1228
- "educationLevels": ["High"],
1558
+ "educationLevels": [
1559
+ "High"
1560
+ ],
1229
1561
  "logoImageUrl": "https://rampart.asd20.org/Logos/Ram%20Head%20Color.png",
1230
1562
  "website": "https://rampart.asd20.org"
1231
1563
  },
1232
1564
  {
1233
1565
  "id": "474e2bc0-a057-83c8-55fa-80cc6384e045",
1234
1566
  "title": "Ranch Creek Elementary School",
1235
- "educationLevels": ["Elementary", "Kindergarten", "Preschool"],
1567
+ "educationLevels": [
1568
+ "Elementary",
1569
+ "Kindergarten",
1570
+ "Preschool"
1571
+ ],
1236
1572
  "logoImageUrl": "https://ranchcreek.asd20.org/PublishingImages/horse.jpg",
1237
1573
  "website": "https://ranchcreek.asd20.org"
1238
1574
  },
1239
1575
  {
1240
1576
  "id": "7f6cdb6a-9aa5-349e-6d33-18989aa647b4",
1241
1577
  "title": "The Classical Academy Elementary-Middle-High School",
1242
- "educationLevels": ["Kindergarten", "Elementary", "Middle", "High"],
1578
+ "educationLevels": [
1579
+ "Kindergarten",
1580
+ "Elementary",
1581
+ "Middle",
1582
+ "High"
1583
+ ],
1243
1584
  "logoImageUrl": "https://asd20websitestorage.blob.core.windows.net/asd20-images/school-logos/tca_logo.png",
1244
1585
  "website": "http://www.tcatitans.org"
1245
1586
  },
1246
1587
  {
1247
1588
  "id": "9f016a2e-6a5e-79f9-c9fd-ed2802bf133a",
1248
1589
  "title": "Academy International Elementary School",
1249
- "educationLevels": ["Elementary", "Kindergarten"],
1590
+ "educationLevels": [
1591
+ "Elementary",
1592
+ "Kindergarten"
1593
+ ],
1250
1594
  "logoImageUrl": "",
1251
1595
  "website": "https://academyinternational.asd20.org"
1252
1596
  },
1253
1597
  {
1254
1598
  "id": "12b45c83-aef5-186e-9954-b19ee65d6290",
1255
1599
  "title": "Douglass Valley Elementary School",
1256
- "educationLevels": ["Elementary", "Kindergarten"],
1600
+ "educationLevels": [
1601
+ "Elementary",
1602
+ "Kindergarten"
1603
+ ],
1257
1604
  "logoImageUrl": "https://douglassvalley.asd20.org/PublishingImages/DVE-Logo1.jpg",
1258
1605
  "website": "https://douglassvalley.asd20.org"
1259
1606
  },
1260
1607
  {
1261
1608
  "id": "0dc68307-39d4-0e8f-760d-1557131025e6",
1262
1609
  "title": "Foothills Elementary School",
1263
- "educationLevels": ["Elementary", "Kindergarten"],
1610
+ "educationLevels": [
1611
+ "Elementary",
1612
+ "Kindergarten"
1613
+ ],
1264
1614
  "logoImageUrl": "https://foothills.asd20.org/PublishingImages/FHElogoWhiteBackground.jpg",
1265
1615
  "website": "https://foothills.asd20.org"
1266
1616
  },
1267
1617
  {
1268
1618
  "id": "8e66f1a2-4d5c-ff3a-46d6-fc5f4ddb4485",
1269
1619
  "title": "Mountain View Elementary School",
1270
- "educationLevels": ["Elementary", "Kindergarten"],
1620
+ "educationLevels": [
1621
+ "Elementary",
1622
+ "Kindergarten"
1623
+ ],
1271
1624
  "logoImageUrl": "https://mountainview.asd20.org/PublishingImages/MVE%20Paw%20Logo%20sm.jpg",
1272
1625
  "website": "https://mountainview.asd20.org"
1273
1626
  },
1274
1627
  {
1275
1628
  "id": "dd0c2f66-aedd-0b50-c567-9df6c4089201",
1276
1629
  "title": "Woodmen-Roberts Elementary School",
1277
- "educationLevels": ["Elementary", "Kindergarten", "Preschool"],
1630
+ "educationLevels": [
1631
+ "Elementary",
1632
+ "Kindergarten",
1633
+ "Preschool"
1634
+ ],
1278
1635
  "logoImageUrl": "",
1279
1636
  "website": "https://woodmenroberts.asd20.org"
1280
1637
  },
1281
1638
  {
1282
1639
  "id": "99ed0539-50ac-4c01-0840-ed9391b588b0",
1283
1640
  "title": "Legacy Peak Elementary School",
1284
- "educationLevels": ["Elementary", "Kindergarten", "Preschool"],
1641
+ "educationLevels": [
1642
+ "Elementary",
1643
+ "Kindergarten",
1644
+ "Preschool"
1645
+ ],
1285
1646
  "logoImageUrl": "https://legacypeak.asd20.org/PublishingImages/LPE-LogoIcons_LeafLines-RGB.jpg",
1286
1647
  "website": "https://legacypeak.asd20.org"
1287
1648
  },
1288
1649
  {
1289
1650
  "id": "ac93f446-9b33-ad66-c6c1-96f5865dea47",
1290
1651
  "title": "Home School Academy Elementary-Middle-High School",
1291
- "educationLevels": ["Elementary", "Middle", "High"],
1652
+ "educationLevels": [
1653
+ "Elementary",
1654
+ "Middle",
1655
+ "High"
1656
+ ],
1292
1657
  "logoImageUrl": "",
1293
1658
  "website": "https://homeschool.asd20.org"
1294
1659
  },
1295
1660
  {
1296
1661
  "id": "060b3b37-4883-e411-7bb4-6b6ac491e31e",
1297
1662
  "title": "Village High School",
1298
- "educationLevels": ["High"],
1663
+ "educationLevels": [
1664
+ "High"
1665
+ ],
1299
1666
  "logoImageUrl": "",
1300
1667
  "website": "https://village.asd20.org"
1301
1668
  },
1302
1669
  {
1303
1670
  "id": "7794f10e-7fdf-8375-8773-a0472cfefacd",
1304
1671
  "title": "School in the Woods Elementary School",
1305
- "educationLevels": ["Elementary"],
1672
+ "educationLevels": [
1673
+ "Elementary"
1674
+ ],
1306
1675
  "logoImageUrl": "https://schoolinthewoods.asd20.org/PublishingImages/LOGO.JPG",
1307
1676
  "website": "https://schoolinthewoods.asd20.org"
1308
1677
  },
1309
1678
  {
1310
1679
  "id": "cdea2b7f-dedd-9232-f6b7-b6f136edb066",
1311
1680
  "title": "Air Academy High School",
1312
- "educationLevels": ["High"],
1681
+ "educationLevels": [
1682
+ "High"
1683
+ ],
1313
1684
  "logoImageUrl": "https://airacademy.asd20.org/SiteAssets/Lists/D20FooterContent/AllItems/Kadet-Transparent.png",
1314
1685
  "website": "https://airacademy.asd20.org"
1315
1686
  },
1316
1687
  {
1317
1688
  "id": "a6fa0939-d7db-6562-3b59-0ae59bf6b412",
1318
1689
  "title": "Chinook Trail Elementary School",
1319
- "educationLevels": ["Elementary", "Kindergarten"],
1690
+ "educationLevels": [
1691
+ "Elementary",
1692
+ "Kindergarten"
1693
+ ],
1320
1694
  "logoImageUrl": "https://chinooktrail.asd20.org/SiteCollectionImages/Lists/D20FooterContent/NewForm/CTE%20Tiger%20Head.png",
1321
1695
  "website": "https://chinooktrail.asd20.org"
1322
1696
  },
1323
1697
  {
1324
1698
  "id": "bd516008-ce80-c562-5043-042f92ee7993",
1325
1699
  "title": "Discovery Canyon Campus Elementary School",
1326
- "educationLevels": ["Elementary", "Kindergarten", "Preschool"],
1700
+ "educationLevels": [
1701
+ "Elementary",
1702
+ "Kindergarten",
1703
+ "Preschool"
1704
+ ],
1327
1705
  "logoImageUrl": "https://dccelementary.asd20.org/PublishingImages/DCCThunder%20logo.jpg",
1328
1706
  "website": "https://dccelementary.asd20.org"
1329
1707
  },
1330
1708
  {
1331
1709
  "id": "c693e850-755a-6843-2cb9-b97bb1fc2e15",
1332
1710
  "title": "Timberview Middle School",
1333
- "educationLevels": ["Middle"],
1711
+ "educationLevels": [
1712
+ "Middle"
1713
+ ],
1334
1714
  "logoImageUrl": "https://timberview.asd20.org/PublishingImages/TMSlogo.jpg",
1335
1715
  "website": "https://timberview.asd20.org"
1336
1716
  },
1337
1717
  {
1338
1718
  "id": "2db17a65-893b-6a05-8730-83205458e4e5",
1339
1719
  "title": "The da Vinci Academy Elementary School",
1340
- "educationLevels": ["Elementary", "Kindergarten", "Preschool"],
1720
+ "educationLevels": [
1721
+ "Elementary",
1722
+ "Kindergarten",
1723
+ "Preschool"
1724
+ ],
1341
1725
  "logoImageUrl": "https://thedavinciacademy.asd20.org/PublishingImages/Dragon%20small.jpg",
1342
1726
  "website": "https://thedavinciacademy.asd20.org"
1343
1727
  },
1344
1728
  {
1345
1729
  "id": "90530a77-c0b3-cf67-963b-9b78d83ded8a",
1346
1730
  "title": "Rockrimmon Elementary School",
1347
- "educationLevels": ["Elementary", "Kindergarten"],
1731
+ "educationLevels": [
1732
+ "Elementary",
1733
+ "Kindergarten"
1734
+ ],
1348
1735
  "logoImageUrl": "",
1349
1736
  "website": "https://rockrimmon.asd20.org"
1350
1737
  },
1351
1738
  {
1352
1739
  "id": "61aa97f1-0302-7267-cd98-1a0824127836",
1353
1740
  "title": "Eagleview Middle School",
1354
- "educationLevels": ["Middle"],
1741
+ "educationLevels": [
1742
+ "Middle"
1743
+ ],
1355
1744
  "logoImageUrl": "https://eagleview.asd20.org/PublishingImages/EMS%20Logo%20Small%20Hi-Res.png",
1356
1745
  "website": "https://eagleview.asd20.org"
1357
1746
  },
1358
1747
  {
1359
1748
  "id": "03eae560-912c-d6e0-2f53-b5c4c2011374",
1360
1749
  "title": "Edith Wolford Elementary School",
1361
- "educationLevels": ["Elementary", "Preschool", "Kindergarten"],
1750
+ "educationLevels": [
1751
+ "Elementary",
1752
+ "Preschool",
1753
+ "Kindergarten"
1754
+ ],
1362
1755
  "logoImageUrl": "https://edithwolford.asd20.org/PublishingImages/Abert%20Squirrel%20in%20Wolford%20circle.jpg",
1363
1756
  "website": "https://edithwolford.asd20.org"
1364
1757
  },
1365
1758
  {
1366
1759
  "id": "4c7c8668-32e0-7368-c95a-2b288fca036c",
1367
1760
  "title": "Chinook Trail Middle School",
1368
- "educationLevels": ["Middle"],
1761
+ "educationLevels": [
1762
+ "Middle"
1763
+ ],
1369
1764
  "logoImageUrl": "https://asd20websitestorage.blob.core.windows.net/asd20-images/school-exteriors/CTMS Rendering.jpg",
1370
1765
  "website": "https://chinooktrailms.asd20.org"
1371
1766
  },
1372
1767
  {
1373
1768
  "id": "d327a883-20ae-2e0e-7b85-bbdd0fbbc244",
1374
1769
  "title": "Explorer Elementary School",
1375
- "educationLevels": ["Elementary", "Preschool", "Kindergarten"],
1770
+ "educationLevels": [
1771
+ "Elementary",
1772
+ "Preschool",
1773
+ "Kindergarten"
1774
+ ],
1376
1775
  "logoImageUrl": "https://explorer.asd20.org/SiteAssets/Lists/D20FooterContent/EditForm/hawk%20logo1.png",
1377
1776
  "website": "https://explorer.asd20.org"
1378
1777
  },
1379
1778
  {
1380
1779
  "id": "4fb32d26-813b-eb50-10a5-1fb1fcd194c9",
1381
1780
  "title": "Frontier Elementary School",
1382
- "educationLevels": ["Elementary", "Preschool", "Kindergarten"],
1781
+ "educationLevels": [
1782
+ "Elementary",
1783
+ "Preschool",
1784
+ "Kindergarten"
1785
+ ],
1383
1786
  "logoImageUrl": "https://frontier.asd20.org/SiteCollectionImages/Lists/D20FooterContent/EditForm/Frontier%20Logo.JPG",
1384
1787
  "website": "https://frontier.asd20.org"
1385
1788
  },
1386
1789
  {
1387
1790
  "id": "aba3996c-12c0-7950-ff11-e62dd4dfd507",
1388
1791
  "title": "Prairie Hills Elementary School",
1389
- "educationLevels": ["Elementary", "Kindergarten"],
1792
+ "educationLevels": [
1793
+ "Elementary",
1794
+ "Kindergarten"
1795
+ ],
1390
1796
  "logoImageUrl": "https://prairiehills.asd20.org/PublishingImages/transcoyote2.jpg",
1391
1797
  "website": "https://prairiehills.asd20.org"
1392
1798
  },
1393
1799
  {
1394
1800
  "id": "23d24a6b-1547-c056-f4ca-1b1ae1288ec3",
1395
1801
  "title": "Village High School",
1396
- "educationLevels": ["High"],
1802
+ "educationLevels": [
1803
+ "High"
1804
+ ],
1397
1805
  "logoImageUrl": "",
1398
1806
  "website": "https://village.asd20.org"
1399
1807
  },
1400
1808
  {
1401
1809
  "id": "59cddc38-e7d6-6394-1e24-7eafd324e39c",
1402
1810
  "title": "Discovery Canyon Campus High School",
1403
- "educationLevels": ["High"],
1811
+ "educationLevels": [
1812
+ "High"
1813
+ ],
1404
1814
  "logoImageUrl": "https://dcchigh.asd20.org/PublishingImages/DCCThunder%20logo.jpg",
1405
1815
  "website": "https://dcchigh.asd20.org"
1406
1816
  },
1407
1817
  {
1408
1818
  "id": "aba3af9c-ceaf-75c1-9806-d120538423b6",
1409
1819
  "title": "Academy Endeavour Elementary School",
1410
- "educationLevels": ["Elementary", "Kindergarten"],
1820
+ "educationLevels": [
1821
+ "Elementary",
1822
+ "Kindergarten"
1823
+ ],
1411
1824
  "logoImageUrl": "https://academyendeavour.asd20.org/PublishingImages/astro%20blue2.png",
1412
1825
  "website": "https://academyendeavour.asd20.org"
1413
1826
  },
1414
1827
  {
1415
1828
  "id": "aad1575a-f8aa-f173-c2ab-742b5d863aa5",
1416
1829
  "title": "Briargate Preschool",
1417
- "educationLevels": ["Preschool"],
1830
+ "educationLevels": [
1831
+ "Preschool"
1832
+ ],
1418
1833
  "logoImageUrl": "",
1419
1834
  "website": "https://www.asd20.org/preschool"
1420
1835
  },
1421
1836
  {
1422
1837
  "id": "395a2484-fb91-5807-4360-5190fe2f759f",
1423
1838
  "title": "Antelope Trails Elementary School",
1424
- "educationLevels": ["Elementary", "Preschool", "Kindergarten"],
1839
+ "educationLevels": [
1840
+ "Elementary",
1841
+ "Preschool",
1842
+ "Kindergarten"
1843
+ ],
1425
1844
  "logoImageUrl": "https://asd20websitestorage.blob.core.windows.net/asd20-images/school-logos/Antelope-Trails-Logo.jpg",
1426
1845
  "website": "https://antelopetrails.asd20.org"
1427
1846
  },
1428
1847
  {
1429
1848
  "id": "01732823-9d7d-7a25-9b3d-1993c67b81c5",
1430
1849
  "title": "Aspen Valley High School",
1431
- "educationLevels": ["High"],
1850
+ "educationLevels": [
1851
+ "High"
1852
+ ],
1432
1853
  "logoImageUrl": "https://aspenvalleyhigh.asd20.org/PublishingImages/Walking%20PumaLowRes.png",
1433
1854
  "website": "https://aspenvalleyhigh.asd20.org"
1434
1855
  },
1435
1856
  {
1436
1857
  "id": "a7c5379a-a418-497e-4c0a-bce3fd3b2c52",
1437
1858
  "title": "Aspen Valley Middle School",
1438
- "educationLevels": ["Middle"],
1859
+ "educationLevels": [
1860
+ "Middle"
1861
+ ],
1439
1862
  "logoImageUrl": "https://aspenvalleymiddle.asd20.org/PublishingImages/WalkingPumaSmall.png",
1440
1863
  "website": "https://aspenvalleymiddle.asd20.org"
1441
1864
  },
1442
1865
  {
1443
1866
  "id": "9cc90fef-02f4-b714-44c7-069e6ba51792",
1444
1867
  "title": "Journey K8 Elementary-Middle School",
1445
- "educationLevels": ["Elementary", "Middle", "Kindergarten", "Preschool"],
1868
+ "educationLevels": [
1869
+ "Elementary",
1870
+ "Middle",
1871
+ "Kindergarten",
1872
+ "Preschool"
1873
+ ],
1446
1874
  "logoImageUrl": "https://journey.asd20.org/Style%20Library/D20_JK8_Logo_Vert_CMYK.png",
1447
1875
  "website": "https://journey.asd20.org"
1448
1876
  },
1449
1877
  {
1450
1878
  "id": "8cef300f-7b86-d475-00c6-1830408d2cae",
1451
1879
  "title": "Pioneer Elementary School",
1452
- "educationLevels": ["Elementary", "Kindergarten"],
1880
+ "educationLevels": [
1881
+ "Elementary",
1882
+ "Kindergarten"
1883
+ ],
1453
1884
  "logoImageUrl": "https://pioneer.asd20.org/PublishingImages/wwolf%20333366.jpg",
1454
1885
  "website": "https://pioneer.asd20.org"
1455
1886
  }
@@ -1874,8 +2305,8 @@
1874
2305
  "value": "[{\"title\":\"Related Events\",\"limit\":20,\"keywords\":\"\",\"calendars\":[\"2002ca04-bd3b-dd84-1e4e-576d878dd497\",\"00a67c71-942d-8ba3-4202-179a23732170\"],\"owners\":[],\"categories\":[],\"tags\":[],\"groupByDate\":true,\"groupByOwner\":false,\"groupByCategory\":false,\"groupByTag\":false}]",
1875
2306
  "validationPattern": null,
1876
2307
  "required": false
1877
- },
1878
- {
2308
+ },
2309
+ {
1879
2310
  "name": "fileFeeds",
1880
2311
  "category": "websiteFeed",
1881
2312
  "id": "55ac8326-ae3c-4b6d-912b-46231ee2132c",
@@ -1884,7 +2315,7 @@
1884
2315
  "value": "[{\"title\":\"Related Files\",\"limit\":20,\"keywords\":\"\",\"owners\":[\"Citizens Bond Oversight Committee\"],\"categories\":[],\"tags\":[],\"groupByDate\":false,\"groupByOwner\":false,\"groupByCategory\":true,\"groupByTag\":false}]",
1885
2316
  "validationPattern": null,
1886
2317
  "required": false
1887
- },
2318
+ },
1888
2319
  {
1889
2320
  "name": "storyFeeds",
1890
2321
  "category": "websiteFeed",
@@ -2685,7 +3116,6 @@
2685
3116
  "validationPattern": "",
2686
3117
  "required": false
2687
3118
  },
2688
-
2689
3119
  {
2690
3120
  "category": "feeds",
2691
3121
  "choices": null,
@@ -2702,4 +3132,4 @@
2702
3132
  "required": false
2703
3133
  }
2704
3134
  ]
2705
- }
3135
+ }
@@ -118,7 +118,7 @@
118
118
  "message": {
119
119
  "id": "b3dabeb0-8ea8-11ec-ab02-815b5ba2e0f7",
120
120
  "title": "Apply for School Choice",
121
- "summary": "We are now accepting applications for students living in, and out of our district for the 2022-23 school year.",
121
+ "summary": "We are now accepting applications for students living in, and out of our district for the 2022-23&nbsp;school&nbsp;year.",
122
122
  "bodyHtml": "<p></p>",
123
123
  "status": "Published",
124
124
  "slug": "apply-for-school-choice",