-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsite-catalog.js
More file actions
147 lines (147 loc) · 3.21 KB
/
site-catalog.js
File metadata and controls
147 lines (147 loc) · 3.21 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
export const topicCatalog = [
{
title: 'Customary Units of Length',
problems: [
{
label: 'Using 3 One or Two Digit Numbers',
href: 'customary-units-three-numbers.html',
icon: '📏',
},
{
label: 'Units Up to 100',
href: 'customary-units-up-to-100.html',
icon: '📐',
},
{
label: 'Appropriate Metric Unit of Length',
href: 'metric-units-length.html',
icon: '📊',
},
],
},
{
title: 'Word Problems',
problems: [
{
label: 'Length Word Problems',
href: 'length-word-problems.html',
icon: '📝',
},
],
},
{
title: 'Basic Operations',
problems: [
{
label: 'Addition & Subtraction (0-20)',
href: 'addition-subtraction-0-20.html',
icon: '🔢',
},
{
label: 'Flashcards: Add & Subtract (0-20)',
href: 'addition-subtraction-0-20-flashcards.html',
icon: '⚡',
},
{
label: 'Multiplication (0-10)',
href: 'multiplication-0-10.html',
icon: '✖️',
},
],
},
{
title: 'Area & Perimeter',
problems: [
{
label: 'Count Area with Unit Squares',
href: 'area-count-unit-squares.html',
icon: '🟨',
badge: 'New',
},
{
label: 'Rectangle Area & Perimeter',
href: 'rectangle-area-perimeter.html',
icon: '📦',
badge: 'New',
},
{
label: 'Composite Figure Area',
href: 'composite-figure-area.html',
icon: '🧩',
badge: 'New',
},
{
label: 'Perimeter on Grid Shapes',
href: 'perimeter-grid-shapes.html',
icon: '🔲',
badge: 'New',
},
],
},
{
title: 'Fractions',
problems: [
{
label: 'Fraction Models & Groups',
href: 'fractions-practice.html?type=models',
icon: '◔',
badge: 'New',
},
{
label: 'Make One Whole & Greater Than One',
href: 'fractions-practice.html?type=whole',
icon: '1⁄2',
badge: 'New',
},
{
label: 'Compare & Equivalent Fractions',
href: 'fractions-practice.html?type=compare',
icon: '≷',
badge: 'New',
},
{
label: 'Order Fractions',
href: 'fractions-practice.html?type=order',
icon: '↕',
badge: 'New',
},
{
label: 'Fractions on Number Lines',
href: 'fractions-practice.html?type=numberlines',
icon: '—',
badge: 'New',
},
{
label: 'Fraction Word Problems',
href: 'fractions-practice.html?type=word',
icon: '📝',
badge: 'New',
},
],
},
{
title: 'Time',
problems: [
{
label: 'Telling Time Problems',
href: 'time-problems.html',
icon: '⏰',
},
{
label: 'Read Clock Time (Minute Tick Marks)',
href: 'time-read-clock-tickmarks.html',
icon: '⏱️',
},
],
},
{
title: 'More Topics Coming Soon',
problems: [
{
label: 'Geometry Basics',
icon: '📐',
soon: true,
},
],
},
];