-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpages_list.js
More file actions
1002 lines (1002 loc) · 33.8 KB
/
pages_list.js
File metadata and controls
1002 lines (1002 loc) · 33.8 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
export const topicPages = [{
page: "Home",
title: "Science of Reading--Caring",
challenge: "Not everyone is cut out to care this much.",
pageXPs: [],
text1: "",
text2: "",
text3: "",
closingText: "",
closingText2: "",
modal: ""
}, {
page: "Baseball",
title: "Science of Reading--The Baseball Study",
challenge: "The Science of Reading is far, far moe than just phonics.",
pageXPs: ["XP5", "XP6"],
text1: "",
text2: "",
text3: "",
closingText: "You know your learners. Don't you?",
closingText2: "",
modal: ""
}, {
page: "RocketScience",
title: "Science of Reading--Is Rocket Science",
challenge: "Teaching Reading is Hard. Rocket Science Hard.",
pageXPs: [],
text1: "We must do all we can to make it easier for mere mortals.",
text2: "",
text3: "",
closingText: "",
closingText2: "",
modal: ""
}, {
page: "RowsIsRose",
title: "Science of Reading--RowsIsRose",
challenge: "What's Going On in His Head?",
pageXPs: [],
text1: "",
text2: "",
text3: "",
closingText: "",
closingText2: "",
modal: ""
}, {
page: "Comprehension",
title: "Science of Reading--Comprehension",
challenge: "Is Reading Comprension A Skill?",
pageXPs: [],
text1: "",
text2: "",
text3: "",
use_sections: true,
sectionInfo: [{
sectionHeading: "",
sectionText1: "",
sectionText2: "",
sectionText3: "",
sectionXPs: ["XP17", "XP18", "XP19"]
}, {
sectionHeading: "",
sectionText1: "Comprehension instruction IS NOT worksheets with Find the Main Idea.",
sectionText2: "Comprehension instruction IS done within a comprehensive high quality curriculum, with proper training of teachers, employing a number of proven reading strategies.",
sectionText3: "",
sectionXPs: ["XP20", "XP23", "XP24", "XP5402"]
}],
closingText: "",
closingText2: "",
modal: ""
}, {
page: "KnowledgeCurse",
title: "Science of Reading--The Curse of Knowledge",
challenge: "What is the Curse of Knowledge?",
pageXPs: [],
text1: "",
text2: "",
text3: "",
closingText: "",
closingText2: "",
modal: ""
}, {
page: "OrthographicMapping",
title: "Science of Reading--Orthographic Mapping",
challenge: "A Deeper Understanding of Committing Words to Useable Memory",
pageXPs: ["XP34", "XP35", "XP36",],
text1: "",
text2: "",
text3: "",
closingText: "",
closingText2: "",
modal: ""
}, {
page: "Improvement",
title: "Science of Reading--Room to Improve",
challenge: "Could Many More Kids Really be Learning to Read?",
pageXPs: [],
text1: "",
text2: "",
text3: "",
closingText: "",
closingText2: "",
modal: ""
}, {
page: "Decoding",
title: "Science of Reading--Decoding",
challenge: "Decoding. (Do Schools Teach Phonics?)",
pageXPs: ["XP29", "XP30", "XP31", "XP32", "XP101", "XP102", "XP103"],
text1: "We'll get much more into this in Level 2.",
text2: "For now, a few introductory things to help those on the new side of things.",
closingText: "",
closingText2: "",
modal: ""
}, {
page: "Morphology",
title: "Science of Reading--Morphology",
challenge: "Why Is Morphology for Power Readers (Plus All the Rest)?",
pageXPs: [],
text1: "",
text2: "",
text3: "",
closingText: "",
closingText2: "",
modal: ""
}, {
page: "Dyslexia",
title: "Science of Reading--Dyslexia + DLD",
challenge: "What Should Parents and Teachers Know of Dyslexia? And how is it different from DLD?",
text1: "",
text2: "",
text3: "",
pageXPs: [],
use_sections: true,
sectionInfo: [{
sectionHeading: "DLDs are actually more common than devlopmental dyslexia.",
sectionText1: "",
sectionText2: "",
sectionText3: "",
sectionXPs: ["XP6101"]
}, {
sectionHeading: "Developmental Language Disorders",
sectionText1: "When children have issues with language comprehension--not word recognition, but with understanding language, ",
sectionText2: "DLDs affect how children learn to read.",
sectionText3: "",
sectionXPs: ["XP6105", "XP6106"]
},
{
sectionHeading: "Dyslexia: Word-level Difficulties ",
sectionText1: "Rougly one in sixteen children come to school with developmental dyslexia conditions.",
sectionText2: "",
sectionText3: "",
sectionXPs: ["XP9", "XP10", "XP11", "XP12"]
}],
closingText: "",
closingText2: "",
modal: ""
}, {
page: "Curriculum",
title: "Science of Reading--Curriculum",
challenge: "So which curricula really work?",
pageXPs: [],
text1: "",
text2: "",
text3: "",
closingText: "",
closingText2: "",
modal: ""
}, {
page: "Fluency",
title: "Science of Reading--Fluency",
challenge: "Why Does Fluency Training Get a Bad Rap?",
pageXPs: ["XP50", "XP51", "XP56", "XP52", "XP53", "XP54", "XP57"],
text1: "",
text2: "",
text3: "",
closingText: "",
closingText2: "", modal: ""
}, {
page: "EdSchools",
title: "Science of Reading--Schools of Education",
challenge: "Are Ed Schools Helping? Or Hurting?",
pageXPs: [],
text1: "",
text2: "",
text3: "",
closingText: "",
closingText2: "",
modal: ""
}, {
page: "Poverty",
title: "Science of Reading--Poverty",
challenge: "But, Poverty",
pageXPs: [],
text1: "",
text2: "",
text3: "",
closingText: "",
closingText2: "",
modal: ""
}, {
page: "StructuredLit",
title: "Science of Reading--Structured Literacy",
challenge: "What best practices will lead to ALL kids reading?",
pageXPs: ["XP5610"],
text1: "We call those gap-closing practices 'Structured Literacy.'",
text2: "",
text3: "",
use_sections: true,
sectionInfo: [{
sectionHeading: "Structured Literacy",
sectionText1: "Kids have a small window to become fluent readers, and we need to act every day, every year to help them learn.",
sectionText2: "",
sectionText3: "",
sectionXPs: ["XP610"]
}, {
sectionHeading: "Assess Skills, Not Levels",
sectionText1: "Within that small window of time, reading 'levels' don't tell us what we need to know.",
sectionText2: "",
sectionText3: "",
sectionXPs: ["XP5222"]
}],
closingText: "",
closingText2: "",
modal: ""
}, {
page: "WordRecognition",
title: "Science of Reading--Word Recognition",
challenge: "How Do We Assure That ALL Kids Can Read the Code?",
use_sections: true,
pageXPs: [],
text1: "In Level One, we considered how children use sounds to store and process written words.",
text2: "If you haven't dug into both the 'How Kids Learn' page and the 'Orthographic Mapping' page, now's a good time!",
text3: "",
use_sections: true,
sectionInfo: [{
sectionHeading: "What to Stop Doing",
sectionText1: "If teachers are to shift their practices, what might go out to make room for the new?",
sectionText2: "",
sectionText3: "",
sectionXPs: ["XP5211", "XP5214"]
},
{
sectionHeading: "Give all kids decoding skills and practice.",
sectionText1: "",
sectionText2: "",
sectionText3: "",
sectionXPs: ["XP5213", "XP5231"],
closingText: "For a discussion of different approaches to word level instruction, see the 'Phonics Approaches' page in Level III."
},
{
sectionHeading: "About 20% of kids may need additional practice.",
sectionText1: "",
sectionText2: "",
sectionText3: "",
sectionXPs: ["XP5221"]
},
{
sectionHeading: "Work toward automaticity.",
sectionText1: "Honestly, I'm not sure what should go in this section right now.",
sectionText2: "We see lots of practices. Which onese are best?",
sectionText3: "",
sectionXPs: ["XP5251", "XP5261"]
},
{
sectionHeading: "Keep going, beyond phonics.",
sectionText1: "",
sectionText2: "",
sectionText3: "",
sectionXPs: ["XP5504"]
}],
closingText: "",
closingText2: "",
modal: ""
}, {
page: "Automaticity",
title: "Science of Reading--Building Automaticity",
challenge: "Word Recognition has to become instant. How do we get ALL readers to this?",
use_sections: true,
pageXPs: [],
text1: "",
text2: "",
text3: "",
use_sections: true,
sectionInfo: [{
sectionHeading: "",
sectionText1: "",
sectionText2: "",
sectionText3: "",
sectionXPs: ["XP5211"]
},
{
sectionHeading: "Give all kids decoding skills and practice.",
sectionText1: "",
sectionText2: "",
sectionText3: "",
sectionXPs: ["XP5213", "XP5231"],
closingText: "For a discussion of different approaches to word level instruction, see the 'Phonics Approaches' page in Level III."
},
{
sectionHeading: "About 20% of kids may need additional practice.",
sectionText1: "",
sectionText2: "",
sectionText3: "",
sectionXPs: ["XP5221"]
},
{
sectionHeading: "Keep going, beyond phonics.",
sectionText1: "",
sectionText2: "",
sectionText3: "",
sectionXPs: ["XP5504"]
}],
closingText: "",
closingText2: "",
modal: ""
}, {
page: "Writing",
title: "Science of Reading--Spelling and Writing",
challenge: "Spelling and Writing for Reading",
use_sections: true,
pageXPs: [],
text1: "",
text2: "",
text3: "",
use_sections: true,
sectionInfo: [{
sectionHeading: "Spelling as a Reading Diagnosic Tool",
sectionText1: "Teachers have a free, powerful diagnostic at the ready any time.",
sectionText2: "Are they sufficuently trained to use it?",
sectionText3: "",
sectionXPs: ["XP4310"]
},
{
sectionHeading: "Spelling Instruction",
sectionText1: "This probably isn't your father's spelling instruction.",
sectionText2: "",
sectionText3: "",
sectionXPs: ["XP4211"]
},
{
sectionHeading: "Teaching Sentence Writing",
sectionText1: "Teaching students to write clear, interesting sentences is crucial to teaching them how to be good, competant readers. ",
sectionText2: "It was hard to leave this out of Level One. The fundamental insight certainly belongs there.",
sectionText3: "To clearly explain this, we have to get into details of practice.",
sectionXPs: ["XP124", "XP120", "XP121", "XP122"]
}],
closingText: "",
closingText2: "",
modal: ""
}, {
page: "BadUgly",
title: "Science of Reading--Good, Bad, Ugly",
challenge: "Curriculum: The Good, the Bad, and the Ugly.",
use_sections: false,
pageXPs: [],
text1: "",
text2: "",
text3: "",
use_sections: true,
sectionInfo: [{
sectionHeading: "Teachers Pay Teachers is Not Your Friend",
sectionText1: "",
sectionText2: "",
sectionText3: "",
sectionXPs: ["XP112"]
},
{
sectionHeading: "Neither Are Some of the Most Popular Programs",
sectionText1: "",
sectionText2: "",
sectionText3: "",
sectionXPs: ["XP113", "XP5670", "XP119"]
},
{
sectionHeading: "So, What to Pick?",
sectionText1: "",
sectionText2: "",
sectionText3: "",
sectionXPs: ["XP5610"]
}],
closingText: "",
closingText2: "",
modal: ""
}, {
page: "Parents",
title: "Science of Reading--Pre-K & Parents",
challenge: "How Do We Assure Kids Are Ready to Start School",
use_sections: false,
pageXPs: [],
text1: "It's not the job of parents to teach reading; and schools can teach every child, no matter their background.",
text2: "Yet some kids will need an extra bit of help with language. It's important we start giving them that as early as possible, which means catching the need before they get to school.",
text3: "",
sectionInfo: [{
sectionHeading: "",
sectionText1: "",
sectionText2: "",
sectionText3: "",
sectionXPs: []
}],
closingText: "",
closingText2: "",
modal: ""
}, {
page: "Kindergarten",
title: "Science of Reading--Kindergarten",
challenge: "How Can Teachers of the Littlest Improve their Reading Readiness?",
pageXPs: ["XP5121", "XP132", "XP138", "XP133", "XP134", "XP135", "XP136", "XP137", "XP5111"],
text1: "",
text2: "",
text3: "",
closingText: "",
closingText2: "",
modal: ""
}, {
page: "MiddleSchool",
title: "Science of Reading--Middle School",
challenge: "Middle School",
pageXPs: [],
text1: "S.O.R. definitely isn't just for K-2! So how can the Science of Reading help us improve life for middle school students?",
text2: "",
text3: "",
closingText: "",
closingText2: "See our `Writing` page for more help.",
modal: ""
}, {
page: "HighSchool",
title: "Science of Reading--High School",
challenge: "High School",
pageXPs: ["XP182", "XP186", "XP183", "XP180", "XP181", "XP185", "XP184"],
text1: "Can the Science of reading still improve life for high school teens?",
text2: "",
text3: "",
closingText: "As with middle school, see the Writing page here for ideas on applying S.o.R. in general class work.",
closingText2: "And see the Interventions page for more ideas on helping kids catch up with reading basics.",
modal: ""
}, {
page: "TeachingArts",
title: "Arts of Teaching",
challenge: "What Are Some Arts of Teaching Reading?",
pageXPs: [],
text1: "All teachers are artists.",
text2: "While Science doesn't back teaching to Learning Styles, good teachers reinforce learning with a wide range of artistic tools.",
text3: "",
closingText: "",
closingText2: "",
modal: ""
}, {
page: "ELABlock",
title: "Building the ELA Block/Day",
challenge: "Squeezing the Most out of Classroom Time",
pageXPs: ["XP261", "XP117",],
text1: "'How do you structure your ELA block (day)?'",
text2: "This is one of the most common questions asked in the SOR groups.",
text3: "And it's not one for which science gives us a ton of answers.",
use_sections: true,
sectionInfo: [{
sectionHeading: "Start With A Whole-School Curriculum Map",
sectionText1: "",
sectionText2: "",
sectionText3: "",
sectionXPs: ["XP260"]
},
{
sectionHeading: "Get the Most Effective Use of the Whole Class Instructional time",
sectionText1: "",
sectionText2: "",
sectionText3: "",
sectionXPs: ["XP261", "XP266", "XP268", "XP267"]
},
{
sectionHeading: "Optimize Small Group Time",
sectionText1: "",
sectionText2: "",
sectionText3: "",
sectionXPs: ["XP117", "XP263", "XP264"]
}],
closingText: "",
closingText2: "",
modal: ""
},
{
page: "Interventions",
title: "Science of Reading--Interventions",
challenge: "",
pageXPs: [],
text1: "The earlier we catch each child's specific issues, the better they'll progress with their class.",
text2: "",
text3: "",
use_sections: true,
sectionInfo: [{
sectionHeading: "What Does It Look Like?",
sectionText1: "A brief look at some of the most common ways we give young learners extra help.",
sectionText2: "",
sectionText3: "",
sectionXPs: ["XP159", "XP150", "XP151", "XP164"]
},
{
sectionHeading: "Exactly the right help for each child",
sectionText1: "Before we offer any child extra help, it's critical to be absolutely clear the exact help they need.",
sectionText2: "",
sectionText3: "",
sectionXPs: ["XP6108", "XP6211", "XP6212", "XP158"]
},
{
sectionHeading: "Using the right tools for the task.",
sectionText1: "Again, still just getting started helping with these,...",
sectionText2: "",
sectionText3: "",
sectionXPs: ["XP154", "XP155", "XP156", "XP6107", "XP157"]
}],
image1: "~/images/impact.jpg",
image2: "~/images/InterventionEffects.png",
closingText: "Again, it's critical to identify and implement the right interventions sooner, rather than later..",
closingText2: "See the Level III Dyslexia page for research behind these effect sizes.",
modal: ""
}, {
page: "Readers",
title: "Science of Reading: Decodable Readers",
challenge: "Choosing Decodable Readers",
pageXPs: ["XP204", "XP200", "XP202", "XP201", "XP205", "XP203", "XP5021"],
text1: "The science is actually still out on the importance of decodable readers. ",
text2: "Yet many teachers like them, and they can help guide teachers as they work through their kids' Swiss Cheese Knowledge of Phonics.",
text3: "",
use_sections: true,
sectionInfo: [{
sectionHeading: "Why Decodables? And how?",
sectionText1: "",
sectionText2: "",
sectionText3: "",
sectionXPs: ["XP204", "XP202", "XP205"]
},
{
sectionHeading: "Finding Approapriate Decodables--some lists",
sectionText1: "",
sectionText2: "",
sectionText3: "",
sectionXPs: ["XP203", "XP201"]
},
{
sectionHeading: "About that Science...",
sectionText1: "",
sectionText2: "",
sectionText3: "",
sectionXPs: ["XP5021"]
}],
closingText: "",
closingText2: "",
modal: "ModalReaders"
}, {
page: "PreService",
title: "Science of Reading: Preservice Programs",
challenge: "Teachers of PreService T's",
pageXPs: [],
text1: "Do you teach or help guide a pre-service teacher program?",
text2: "Here's a little more help for you.",
text3: "",
closingText: "",
closingText2: "",
modal: ""
}, {
page: "ProgressTracking",
title: "Science of Reading: Learner Progress Monitoring",
challenge: "How do we track the progress as children learn to read?",
pageXPs: ["XP165", "XP167", "XP160", "XP161", "XP162", "XP163", "XP164", "XP166"],
text1: "It's critical to know that each student has mastered all of the skills and knowledge essential to reading success.",
text2: "While there are different approaches to this, respected researcher Matt Burns gives an overview:",
text3: "",
use_sections: false,
image1: "~/images/progress.png",
closingText: "",
closingText2: "",
modal: ""
}, {
page: "GettingHelp",
title: "Science of Reading: Getting Help",
challenge: "Where Do I Turn For Help in This, Day in and Day Out?",
pageXPs: [],
text1: "By far, the coolest development in K12 in 2019 was the rise of two communities of teachers arround the science of reading.",
text2: "The first, the #ELAchat community on Twitter, had some high-energy, experienced, leaders at it's core.",
text3: "The second, larger, and arguably sweeter group has gone viral on Facebook. A remarkable number of teachers, and parents, joined in just weeks.",
closingText: "",
closingText2: "",
modal: ""
}, {
page: "Training",
title: "Science of Reading: Teacher Training",
challenge: "Training is Critical if We're to Eliminate Kids' Swiss Cheese Phonics Knowledge",
pageXPs: ["XP226", "XP225", "XP220", "XP221", "XP222", "XP223", "XP224", "XP2502"],
text1: "While you can train yourself in a real pinch, formal training makes things so much better.",
text2: "It's hard to find the right, effective training. We'll do our best to help.",
text3: "",
closingText: "",
closingText2: "",
modal: ""
}, {
page: "ThirdGrade",
title: "Science of Reading--3rd Grade+",
challenge: "3rd Grade (and Up)",
pageXPs: ["XP190", "XP191", "XP192", "XP193", "XP5504", "XP194"],
text1: "By third grade, nearly all kids should be acing their phonemic awareness, and decoding well. What's next?",
text2: "",
text3: "",
closingText: "",
closingText2: "",
modal: ""
}, {
page: "SwissCheese",
title: "Science of Reading--Parmesian, Please",
challenge: "From Swiss to Parmesian",
pageXPs: ["XP237", "XP230", "XP231", "XP238", "XP232", "XP234", "XP235", "XP236", "XP237"],
text1: "Those holes in phonics knowledge and/or phonological processing skills won't fix themselves. Nor will issues with language comprehension.",
text2: "And every class is different in how to address them.",
text3: "",
use_sections: true,
sectionInfo: [{
sectionHeading: "The Basic Approach",
sectionText1: "30 minues a day of explicit, systematic instruction--plus intentional progress monitoring--gives the core formula for success.",
sectionText2: "",
sectionText3: "",
sectionXPs: ["XP237", "XP230", "XP231"]
}, {
sectionHeading: "Then Follow Up for Kids Who Need It",
sectionText1: "",
sectionText2: "",
sectionText3: "",
sectionXPs: ["XP238", "XP232", "XP234", "XP235", "XP236"]
}],
closingText: "",
closingText2: "",
modal: ""
}, {
page: "OralLanguage",
title: "Science of Reading--Oral Language Development",
challenge: "Upon this Rock...",
use_sections: true,
sectionInfo: [{
sectionHeading: "Start in the Classroom",
sectionText1: "",
sectionText2: "",
sectionText3: "",
sectionXPs: ["XP5341", "XP5342", "XP5346"]
},
{
sectionHeading: "Screen for the 1 in 12 who have developmental language disorders, who need further support. ",
sectionText1: "",
sectionText2: "",
sectionText3: "",
sectionXPs: ["XP5344", "XP5345"]
}],
pageXPs: [],
text1: "Oral language is the ground on which good reading is built.",
text2: "If we don't pay close enough attention to a child's oral language abilities, their reading will suffer, too.",
text3: "",
closingText: "",
closingText2: "",
modal: ""
}, {
page: "Classroom",
title: "Science of Reading--In the Classroom",
challenge: "Show Us the Video!",
use_sections: true,
sectionInfo: [{
sectionHeading: "",
sectionText1: "",
sectionText2: "",
sectionText3: "",
sectionXPs: ["XP5241", "XP5242"]
}],
pageXPs: [],
text1: "Let's look inside some classrooms, and watch teachers doing this.",
text2: "",
text3: "",
closingText: "",
closingText2: "",
modal: ""
}, {
page: "ComprehensionII",
title: "Science of Reading--Comprehension Level II",
challenge: "Teaching to Grow Comprehension",
use_sections: true,
sectionInfo: [{
sectionHeading: "Comprehension instruction IS NOT worksheets with Find the Main Idea.",
sectionText1: "So much time and energy has been expended on teaching and measuring 'comprehension skills'. Research tells us, it doesn't help.",
sectionText2: "",
sectionText3: "",
sectionXPs: ["XP5521", "XP5321"]
},
{
sectionHeading: "Comprehension instruction IS done within a comprehensive high quality curriculum, with proper training of teachers, employing a number of proven reading strategies.",
sectionText1: "Focus each day on rigorous, challenging texts.",
sectionText2: "",
sectionText3: "",
sectionXPs: ["XP5509", "XP5411", "XP5330", "XP5311", "XP5512", "XP5503", "XP5506"]
}],
pageXPs: [],
text1: "",
text2: "",
text3: "",
closingText: "",
closingText2: "",
modal: ""
}, {
page: "Research",
title: "Science of Reading--Research, Research!",
challenge: "Digging in to the Research",
pageXPs: ["XP2020", "XP2000", "XP2001", "XP2002", "XP2003"],
text1: "Here's where we really start to dive in. What have scientists told us? In their own, original words?",
text2: "In earlier sections, we gave a few seminal papers & experiments. But here, we really want to lay out a comprehensive view of the landscape.",
text3: "This will be work for version 2 or 3, to be sure. Still, let's give it a start.",
use_sections: true,
sectionInfo: [
{
sectionHeading: "A Whole Lotta' Evidence",
sectionText1: "",
sectionText2: "",
sectionText3: "",
sectionXPs: ["XP2020"]
}, {
sectionHeading: "The Evolving Models of Reading",
sectionText1: "",
sectionText2: "",
sectionText3: "",
sectionXPs: ["XP2000", "XP2001", "XP2002", "XP2003"],
closingText: "Well! Just from these, we can see that the Science of Reading, even among scientists, is not only still evolving; its living and human nature can invite passion from the most seasoned of researchers.",
closingText2: "We put the two models above, not to choose one approach, but to indicate that we'll all have an incomplete understanding. Many trainers will embrace a third graphic, the famous 'Scarborough's Reading Rope.'",
closingText3: "For now, we'll leave the research section at this, and invite you to meet some of the people who give us the Science of Reading.",
}, {
sectionHeading: "Then There's the Research on How to Do Research",
sectionText1: "What constitutes best practice for researchers?",
sectionText2: "Of course, this doesn't stand still, either. 'Ideal' approaches to research change, too.' ",
sectionText3: "",
sectionXPs: ["XP2032", "XP2031"]
}],
savedTExt: "Is reality more in the middle? Will practitioners and program developers use both?",
modal: ""
}, {
page: "ResearchConsumption",
title: "Science of Reading--Using Research",
challenge: "Not All Research is Created Equal. How to Tell?",
pageXPs: ["XP2110", "XP2104", "XP2101", "XP2102", "XP2103"],
text1: "Discussions of teaching often degenerate to very different kinds of 'peer-reviewed' papers being thrown past each other.",
text2: "Growing an understanding of each takes some tough work.",
text3: "",
closingText: "",
closingText2: "",
modal: ""
}, {
page: "People",
title: "Science of Reading--The People",
challenge: "Science is People",
pageXPs: [],
text1: "Science isn't just experiments, papers, models. It's the living understanding inside the minds of those who have studied it deeply.",
text2: "Here we'll try to meet some of those people, understand how they contribute.",
text3: "Again, this will be work for versions 2 and 3. For now, a few.",
closingText: "",
closingText2: "",
modal: ""
}, {
page: "Issues",
title: "Science of Reading--Issues",
challenge: "Issues, Disagreements, and Controversies",
pageXPs: ["XP2410", "XP2402", "XP2403", "XP2404", "XP2405", "XP2421"],
text1: "That now famous term 'Scientific Consensus'. What if it's not yet there?",
text2: "Let's explore a few areas where we need more research. Or, at least, better interpretations of the existing studies.",
text3: "Again, this will evolve more in version 2",
closingText: "",
closingText2: "",
modal: ""
}, {
page: "History",
title: "Science of Reading--Timeline of the Science",
challenge: "When and how did the Science of Reading evolve?",
pageXPs: [],
text1: "Who discovered what; and when?",
text2: "If we are clearer on exactly what crucial discoveries constituted the science of reading, we'll face less friction in getting its results to all children.",
text3: "Hopefully, this will evolve into a more dynamic section of the app, with user features not yet quite imagined. ",
closingText: "",
closingText2: "",
modal: ""
}, {
page: "English",
title: "Science of Reading--Linguistics",
challenge: "Just How did English become so complex?",
pageXPs: [],
text1: "English is just a hard language.",
text2: "It's often difficult for people with a full command of English to grasp why others fell behind. And sometimes, SOR advocates get so enthusiastic about phonics and phonemic awareness, that they forget how hard the other parts are, too.",
text3: "Linguistics is part of the reading teachers toolkit. Here's just a taste, while we think about what else might go here. ",
section2: "Why is 'girl' not like 'giraffe'?",
closingText: "",
closingText2: "",
modal: ""
}, {
page: "TrainingPrograms",
title: "Science of Reading--Training Programs Compared",
challenge: "All training programs differ. How?",
pageXPs: [],
text1: "In Level III, we looked across the complexity of the science of reading, and at it's cutting edges.",
text2: "By their nature, training programs will try to capture this science. They'll succeed in places, lag in places, and sometimes just miss.",
text3: "How this should be approached here is still a question. We'd love to hear your thoughts.",
closingText: "",
closingText2: "",
modal: ""
}, {
page: "PhonicsApproaches",
title: "Science of Reading--Phonics Instructional Approaches",
challenge: "`Phonics` can mean many things.",
use_sections: true,
text1: "Much debate continues within the S.o.R. community as to exactly which forms of phonics instruction are most effective.",
text2: "",
text3: "",
sectionInfo: [{
sectionHeading: "",
sectionText1: "",
sectionText2: "",
sectionText3: "",
sectionXPs: ["XP5003", "XP5004"]
},
{
sectionHeading: "Speech-to-Print",
sectionText1: "",
sectionText2: "",
sectionText3: "",
sectionXPs: ["XP5007", "XP5013", "XP5010"]
},
{
sectionHeading: "Why isn't 'action' spelled 'acshun'?",
sectionText1: "Or, What is Structured Word Inquiry?",
sectionText2: "",
sectionText3: "",
sectionXPs: ["XP5005", "XP5006"]
}],
pageXPs: [],
closingText: "As we develop this section, we'll try to help you make sense of the debate.",
closingText2: "",
modal: ""
}, {
page: "FirstGrade",
title: "Science of Reading--First Grade",
challenge: "To be on track for 3rd grade proficiency, what would we like to see done in 1st?",
use_sections: true,
text1: "",
text2: "",
text3: "",
sectionInfo: [
{
sectionHeading: "Effective Practices",
sectionText1: "",
sectionText2: "",
sectionText3: "",
sectionXPs: ["XP2611", "XP2615"]
}],
pageXPs: [],
closingText: "As we develop this section, we'll try to help you make sense of the debate.",
closingText2: "",
modal: ""
}, {
page: "HowKidsLearn",
title: "Science of Reading--How Children Learn to Read",
challenge: "What Do We Know about Reading, and How Young Kids Learn to Do It?",
pageXPs: [],
text1: "This ought be an entire section of the app. With fully interactive, multi-media engagement.",
challenge2: "",
text2: "",
challenge3: "",
text3: "",
use_sections: true,
sectionInfo: [{
sectionHeading: "",
sectionText1: "",
sectionText2: "",
sectionText3: "",
sectionXPs: ["XP300", "XP301", "XP303"]
},
{
sectionHeading: "Who Knew, and When Did They Know It?",
sectionText1: "",
sectionText2: "",
sectionText3: "",
sectionXPs: ["XP310"]
},
{
sectionHeading: "And What, Exactly, Did They Know?",
sectionText1: "",
sectionText2: "",
sectionText3: "",
sectionXPs: ["XP302"]
}],
closingText: "",
closingText2: "",
modal: ""
}, {
page: "ComprehensionIII",
title: "Science of Reading--Comprehension Level III",
challenge: "Deeper in to Comprehension",
use_sections: true,
sectionInfo: [{
sectionHeading: "Comprehension instruction IS NOT worksheets with Find the Main Idea.",
sectionText1: "So much time and energy has been expended on teaching and measuring 'comprehension skills'. Research tells us, it doesn't help.",
sectionText2: "",
sectionText3: "",
sectionXPs: ["XP5521"]
},
{
sectionHeading: "Comprehension instruction IS done within a comprehensive high quality curriculum, with proper training of teachers, employing a number of proven reading strategies.",
sectionText1: "Focus each day on rigorous, challenging texts.",
sectionText2: "",
sectionText3: "",
sectionXPs: ["XP5502", "XP5508"]
}],
pageXPs: [],
text1: "",
text2: "",
text3: "",
closingText: "",
closingText2: "",
modal: ""
}, {
page: "DyslexiaIII",
title: "Science of Reading--Reading Difficulties",
challenge: "What Neurobiological Conditions Impede Reading?",
pageXPs: ["XP53", "XP6003", "XP6004", "XP6005", "XP6006"],
text1: "It's tempting to view Dyslexia as a disability. Many lawyers insist on it.",
text2: "Yet, scientifically, it's harder to pin down. Reading difficulties present as a spectrum of conditions. Including some that are assets in other cognitive tasks.",
text3: "Here we'll dig in to both the science, and issues of practice.",
closingText: "",
closingText2: "",
modal: ""
}, {
page: "MTSS",
title: "Science of Reading--MTSS || RTI",
challenge: "How do we structure learning and services that we can't deliver in the classroom?",
pageXPs: ["XP152", "XP153"],
text1: "",
text2: "",
closingText2: "",
modal: ""
}, {
page: "BadUglyIII",
title: "Science of Reading--Bad, Ugly III",
challenge: "Unbalanced Literacy: the Bad, and the Ugly.",
pageXPs: ["XP5600", "XP5601", "XP5604", "XP111"],
text1: "When 'Balanced Literacy' is truly balanced, it really looks a lot like the Science of Reading.",
text2: "Yet, as practiced, it often includes some just bad concepts, ideas, and advice.",
text3: "",
closingText: "",
closingText2: "",
modal: ""
}, {
page: "GradSchools",
title: "Science of Reading--Grad Schools",
challenge: "How Can I Specialize in This?",
pageXPs: ["XP7000", "XP7011"],
text1: "Not many universites have a Dept. of Science of Reading.",
text2: "So, where to go to study?",
text3: "",
closingText: "",
closingText2: "",
modal: ""
}, {
page: "LearningScience",
title: "Science of Reading--Science of Learning",
challenge: "The Broader Science about Learning",
pageXPs: ["XP2220", "XP2201", "XP2202", "XP2230", "XP2210", "XP2240", "XP2250", "XP2261"],
text1: "There's a lot more science about how people learn.",
text2: "Let's look at some of the basics.",
text3: "",
closingText: "",
closingText2: "",
modal: ""
}, {
page: "Law",
title: "Science of Reading--I Love the Law",
challenge: "How Can the Law Help, Hinder Schools in their S.O.R Journey?",
pageXPs: ["XP6503", "XP6504"],
text1: "",
text2: "The fifty US state laboratories are experimenting with how to bring the SoR to most help kids. ",
text3: "Let's peek in.",
closingText: "",
closingText2: "'I Love The Law!!' -- the mantra my law professor made us repeat.",
modal: ""
}, {
page: "Engineering",
title: "S.O.R.--The Engineering of Reading Instruction",
challenge: "No, we don't have solid science for every aspect of teaching. Neither do designers of ships, rockets, or planes.",
pageXPs: ["XP7500", "XP7510", "XP7520", "XP7506"],
text1: "Here's a typical argument for why the Science of Reading should not be followed in the classroom:",
text2: "'The apologetics of the gaps in the science and lack of replication is what has gotten us bad policy and bad curriculum. If we aren’t careful, we’ll just repeat history. It is why there are these pendulum swings and why movements get cult reputations.'",
text3: "It's not on its face completely untrue. But it is bad advice.",
closingText: "",
closingText2: "",
modal: ""
}, {
page: "WhatsMissing",
title: "S.O.R.--Whats Missing From the Science",
challenge: "And What Can We Do to Get It Done?",
pageXPs: ["XP8000"],
text1: "We still don't have many of the answers we should have by now.",
text2: "In this section, we'll try to gather and sort such questions.",
text3: "Eventually, we hope that PhD candidates and other researchers can come right to here for ideas about questions they can pursue.",
closingText: "",
closingText2: "",