@asd20/ui 3.2.457 → 3.2.458
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,12 @@ export default {
|
|
|
169
178
|
)
|
|
170
179
|
)
|
|
171
180
|
},
|
|
181
|
+
primaryMessage() {
|
|
182
|
+
const introMessage = this.primaryMessages.slice(0, 1)
|
|
183
|
+
console.log(introMessage)
|
|
184
|
+
if ((introMessage[0].bodyHtml === '' || null) || (introMessage[0].detailLink !== '' || null)) return
|
|
185
|
+
return introMessage
|
|
186
|
+
},
|
|
172
187
|
},
|
|
173
188
|
}
|
|
174
189
|
</script>
|
|
@@ -208,6 +223,34 @@ export default {
|
|
|
208
223
|
}
|
|
209
224
|
}
|
|
210
225
|
}
|
|
226
|
+
.intro-message {
|
|
227
|
+
.asd20-messaging {
|
|
228
|
+
border-left: 40px solid var(--color__tertiary);
|
|
229
|
+
border-bottom: 20px solid var(--color__tertiary);
|
|
230
|
+
padding-left: space(1);
|
|
231
|
+
padding-bottom: space(1);
|
|
232
|
+
}
|
|
233
|
+
p {
|
|
234
|
+
// font-family: var(--website-typography__font-family-headlines);
|
|
235
|
+
font-size: 18px !important;
|
|
236
|
+
line-height: 1.5;
|
|
237
|
+
font-family: var(--website-typography__font-family-headlines);
|
|
238
|
+
}
|
|
239
|
+
h2 {
|
|
240
|
+
@include asd20-font(
|
|
241
|
+
1.5,
|
|
242
|
+
var(--website-typography__font-family-headlines),
|
|
243
|
+
1.2,
|
|
244
|
+
700
|
|
245
|
+
);
|
|
246
|
+
font-family: var(--website-typography__font-family-headlines);
|
|
247
|
+
// font-size: 36px !important;
|
|
248
|
+
}
|
|
249
|
+
}
|
|
250
|
+
.seperator {
|
|
251
|
+
width: 90%;
|
|
252
|
+
margin: auto;
|
|
253
|
+
}
|
|
211
254
|
}
|
|
212
255
|
|
|
213
256
|
@media (min-width: 1024px) {
|
|
@@ -229,6 +272,9 @@ export default {
|
|
|
229
272
|
.asd20-page-content {
|
|
230
273
|
margin-top: space(0);
|
|
231
274
|
}
|
|
275
|
+
.intro-message {
|
|
276
|
+
width: 90%;
|
|
277
|
+
}
|
|
232
278
|
}
|
|
233
279
|
}
|
|
234
280
|
</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
|
}
|