@asd20/ui 3.2.457 → 3.2.459
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
|
@@ -55,10 +55,10 @@
|
|
|
55
55
|
|
|
56
56
|
<!-- Page Content -->
|
|
57
57
|
<asd20-page-content
|
|
58
|
-
|
|
59
|
-
:
|
|
60
|
-
omit-
|
|
61
|
-
|
|
58
|
+
class="intro-message"
|
|
59
|
+
:primary-messages="primaryMessage"
|
|
60
|
+
omit-detail-links
|
|
61
|
+
omit-calls-to-action
|
|
62
62
|
>
|
|
63
63
|
<!-- Inline-Notifications -->
|
|
64
64
|
<template slot="before">
|
|
@@ -74,6 +74,15 @@
|
|
|
74
74
|
|
|
75
75
|
<slot></slot>
|
|
76
76
|
</asd20-page-content>
|
|
77
|
+
<!-- <hr class="seperator" /> -->
|
|
78
|
+
|
|
79
|
+
<asd20-page-content
|
|
80
|
+
:primary-messages="wayFindingPrimaryMessages"
|
|
81
|
+
:secondary-messages="secondaryMessages"
|
|
82
|
+
omit-body-content
|
|
83
|
+
grid
|
|
84
|
+
>
|
|
85
|
+
</asd20-page-content>
|
|
77
86
|
|
|
78
87
|
<asd20-feeds-section
|
|
79
88
|
:announcements="announcements"
|
|
@@ -169,6 +178,11 @@ export default {
|
|
|
169
178
|
)
|
|
170
179
|
)
|
|
171
180
|
},
|
|
181
|
+
primaryMessage() {
|
|
182
|
+
const introMessage = this.primaryMessages.slice(0, 1)
|
|
183
|
+
if ((introMessage[0].bodyHtml === '' || null) || (introMessage[0].detailLink !== '' || null)) return
|
|
184
|
+
return introMessage
|
|
185
|
+
},
|
|
172
186
|
},
|
|
173
187
|
}
|
|
174
188
|
</script>
|
|
@@ -208,6 +222,34 @@ export default {
|
|
|
208
222
|
}
|
|
209
223
|
}
|
|
210
224
|
}
|
|
225
|
+
.intro-message {
|
|
226
|
+
.asd20-messaging {
|
|
227
|
+
border-left: 40px solid var(--color__tertiary);
|
|
228
|
+
border-bottom: 20px solid var(--color__tertiary);
|
|
229
|
+
padding-left: space(1);
|
|
230
|
+
padding-bottom: space(1);
|
|
231
|
+
}
|
|
232
|
+
p {
|
|
233
|
+
// font-family: var(--website-typography__font-family-headlines);
|
|
234
|
+
font-size: 18px !important;
|
|
235
|
+
line-height: 1.5;
|
|
236
|
+
font-family: var(--website-typography__font-family-headlines);
|
|
237
|
+
}
|
|
238
|
+
h2 {
|
|
239
|
+
@include asd20-font(
|
|
240
|
+
1.5,
|
|
241
|
+
var(--website-typography__font-family-headlines),
|
|
242
|
+
1.2,
|
|
243
|
+
700
|
|
244
|
+
);
|
|
245
|
+
font-family: var(--website-typography__font-family-headlines);
|
|
246
|
+
// font-size: 36px !important;
|
|
247
|
+
}
|
|
248
|
+
}
|
|
249
|
+
.seperator {
|
|
250
|
+
width: 90%;
|
|
251
|
+
margin: auto;
|
|
252
|
+
}
|
|
211
253
|
}
|
|
212
254
|
|
|
213
255
|
@media (min-width: 1024px) {
|
|
@@ -229,6 +271,9 @@ export default {
|
|
|
229
271
|
.asd20-page-content {
|
|
230
272
|
margin-top: space(0);
|
|
231
273
|
}
|
|
274
|
+
.intro-message {
|
|
275
|
+
width: 90%;
|
|
276
|
+
}
|
|
232
277
|
}
|
|
233
278
|
}
|
|
234
279
|
</style>
|
|
@@ -101,12 +101,11 @@
|
|
|
101
101
|
"id": "4fe4dc65-0d61-497f-8596-e4c5d156bf71",
|
|
102
102
|
"title": "Supports for Academic Success",
|
|
103
103
|
"summary": "Academy District 20 provides a host of services so all students have the tools they need to achieve academic success.",
|
|
104
|
-
"bodyHtml": "",
|
|
104
|
+
"bodyHtml": "<h2>Overview</h2><p>Each Academy District 20 school has at least one special education teacher and speech/language pathologist. Students may also receive supports from school social workers, school psychologists, school nurses and occupational and physical therapists. </p><p>Our special education staff members work with students and their families in a variety of ways such as: completing assessments, participating in the development of Individual Education Plans (IEPs) and providing specialized support services. </p><p>Special Education staff meet the state standards for licensed teachers and/or special service providers through the Colorado Department of Education. </p><h2>Inclusion at Academy District 20</h2><p>Inclusion is a child-centered, collaborative process that focuses on the unique needs of each student as an equally valued member of the school community. Inclusion gives each student authentic access to the standards driven curriculum and social community through meaningful instruction and interaction supported by the intentional allocation of time and resources.</p><p>This includes the practice of educating all students together to the maximum extent appropriate with the long -range goal of independence, and participation in and contribution to the community.</p>",
|
|
105
105
|
"status": "Published",
|
|
106
106
|
"publishDateTime": "2019-07-02T20:42:12.000Z",
|
|
107
107
|
"expireDateTime": null,
|
|
108
108
|
"translations": [],
|
|
109
|
-
"images": [],
|
|
110
109
|
"callsToAction": null,
|
|
111
110
|
"links": [
|
|
112
111
|
{
|
|
@@ -238,8 +238,9 @@ export default {
|
|
|
238
238
|
footer.eventsFeedProps = this.eventsFeedProps
|
|
239
239
|
}
|
|
240
240
|
|
|
241
|
-
if (
|
|
242
|
-
footer.relatedLinks = this.relatedLinks
|
|
241
|
+
if (this.relatedLinks.length > 10 || !useSidebar) {
|
|
242
|
+
footer.relatedLinks = this.relatedLinks.filter(l => l.imageUrl)
|
|
243
|
+
sidebar.relatedLinks = this.relatedLinks.filter(l => !l.imageUrl)
|
|
243
244
|
} else {
|
|
244
245
|
sidebar.relatedLinks = this.relatedLinks || []
|
|
245
246
|
}
|