|
1 | | -#imageName, courseName varible only gets used for menu.html macro on search results |
2 | | -#NAmes should match the courseName in lecturesData.py |
3 | 1 |
|
4 | | -ruby = { |
5 | | - 'courseName': 'Ruby',#used on search results & link route |
6 | | - 'name': 'Ruby Programming', |
7 | | - 'logo': 'ruby-plain', #used in devicon icon css library |
8 | | - 'difficulty': 'Advance', |
9 | | - 'duration': '2 weeks', |
10 | | - 'rating': '4.5', |
11 | | - 'price': 'Free', |
12 | | - 'imageName': 'ruby/ruby-original.svg', #fetched from devicon icon image library |
13 | | - 'description': 'Learn the basics of Ruby programming language for building robust applications.' |
14 | | -} |
15 | 2 | Python = { |
16 | | - 'courseName': 'Python',#used on search results |
| 3 | + 'courseName': 'Python', #used on search results & link route |
17 | 4 | 'name': 'Python Programming', |
18 | 5 | 'logo': 'python-plain', |
19 | 6 | 'difficulty': 'Beginner', |
|
23 | 10 | 'imageName': 'python/python-original.svg', |
24 | 11 | 'description': 'Learn the basics of Python programming language for building robust applications.' |
25 | 12 | } |
| 13 | + |
26 | 14 | ReactJS = { |
27 | | - 'courseName': 'ReactJS',#used on search results |
| 15 | + 'courseName': 'ReactJS', |
28 | 16 | 'name': 'ReactJS', |
29 | 17 | 'logo' : 'react-original', |
30 | 18 | 'difficulty': 'Intermediate', |
|
34 | 22 | 'imageName': 'react/react-original.svg', |
35 | 23 | 'description': 'ReactJS is a powerful, efficient and user-friendly JavaScript library for building interactive interfaces.' |
36 | 24 | } |
| 25 | + |
| 26 | +ruby = { |
| 27 | + 'courseName': 'Ruby', |
| 28 | + 'name': 'Ruby Programming', |
| 29 | + 'logo': 'ruby-plain', |
| 30 | + 'difficulty': 'Advance', |
| 31 | + 'duration': '2 weeks', |
| 32 | + 'rating': '4.5', |
| 33 | + 'price': 'Free', |
| 34 | + 'imageName': 'ruby/ruby-original.svg', |
| 35 | + 'description': 'Learn the basics of Ruby programming language for building robust applications.' |
| 36 | +} |
| 37 | + |
37 | 38 | ML = { |
38 | | - 'courseName': 'ML+AI',#used on search results |
| 39 | + 'courseName': 'ML+AI', |
39 | 40 | 'name': 'Machine Learning', |
40 | 41 | 'logo': 'python-plain', |
41 | 42 | 'difficulty' : 'Advance', |
42 | 43 | 'duration': '3 week', |
43 | 44 | 'rating': '4.9', |
44 | | - 'price': '$7.5', |
| 45 | + 'price': 'Free', |
45 | 46 | 'imageName': 'python/python-original.svg', |
46 | 47 | 'description': 'Training computers to learn from data, improving performance without explicit instructions.' |
47 | 48 | } |
| 49 | + |
48 | 50 | JavaScript = { |
49 | | -'courseName': 'JavaScript',#used on search results |
50 | | -'name': 'JavaScript Fundamentals', |
51 | | -'logo': 'javascript-plain', |
52 | | -'difficulty': 'Beginner', |
53 | | -'duration': '4 weeks', |
54 | | -'rating': '4.7', |
55 | | -'price': '$5.0', |
56 | | -'imageName': 'javascript/javascript-original.svg', |
57 | | -'description': 'Learn the basics of JavaScript programming for front-end and back-end development.' |
| 51 | + 'courseName': 'JavaScript', |
| 52 | + 'name': 'JavaScript Fundamentals', |
| 53 | + 'logo': 'javascript-plain', |
| 54 | + 'difficulty': 'Beginner', |
| 55 | + 'duration': '4 weeks', |
| 56 | + 'rating': '4.7', |
| 57 | + 'price': 'Free', |
| 58 | + 'imageName': 'javascript/javascript-original.svg', |
| 59 | + 'description': 'Learn the basics of JavaScript programming for front-end and back-end development.' |
58 | 60 | } |
59 | 61 |
|
60 | 62 | Java = { |
61 | | -'courseName': 'Java',#used on search results |
62 | | -'name': 'Java Programming', |
63 | | -'logo': 'java-plain', |
64 | | -'difficulty': 'Intermediate', |
65 | | -'duration': '5 weeks', |
66 | | -'rating': '4.8', |
67 | | -'price': 'Free', |
68 | | -'imageName': 'java/java-original.svg', |
69 | | -'description': 'Get started with Java and object-oriented programming for building robust applications.' |
| 63 | + 'courseName': 'Java', |
| 64 | + 'name': 'Java Programming', |
| 65 | + 'logo': 'java-plain', |
| 66 | + 'difficulty': 'Intermediate', |
| 67 | + 'duration': '5 weeks', |
| 68 | + 'rating': '4.8', |
| 69 | + 'price': 'Free', |
| 70 | + 'imageName': 'java/java-original.svg', |
| 71 | + 'description': 'Get started with Java and object-oriented programming for building robust applications.' |
70 | 72 | } |
71 | 73 |
|
72 | 74 | cplusplus = { |
73 | | -'courseName': 'C++',#used on search results |
74 | | -'name': 'C++ Essentials', |
75 | | -'logo': 'cplusplus-plain', |
76 | | -'difficulty': 'Beginner', |
77 | | -'duration': '2 weeks', |
78 | | -'rating': '4.5', |
79 | | -'price': '$15', |
80 | | -'imageName': 'cplusplus/cplusplus-original.svg', |
81 | | -'description': 'Introduction to C++ programming language and its applications in various domains.' |
| 75 | + 'courseName': 'C++', |
| 76 | + 'name': 'C++ Essentials', |
| 77 | + 'logo': 'cplusplus-plain', |
| 78 | + 'difficulty': 'Beginner', |
| 79 | + 'duration': '2 weeks', |
| 80 | + 'rating': '4.5', |
| 81 | + 'price': 'Free', |
| 82 | + 'imageName': 'cplusplus/cplusplus-original.svg', |
| 83 | + 'description': 'Introduction to C++ programming language and its applications in various domains.' |
82 | 84 | } |
| 85 | + |
83 | 86 | Django = { |
84 | | -'courseName': 'Django',#used on search results |
85 | | -'name': 'Django Framework', |
86 | | -'logo': 'django-plain', |
87 | | -'difficulty': 'Intermediate', |
88 | | -'duration': '3 weeks', |
89 | | -'rating': '4.6', |
90 | | -'price': '$25', |
91 | | -'imageName': 'django/django-plain.svg', |
92 | | -'description': 'Learn the basics of Django framework for building robust web applications.' |
| 87 | + 'courseName': 'Django', |
| 88 | + 'name': 'Django Framework', |
| 89 | + 'logo': 'django-plain', |
| 90 | + 'difficulty': 'Intermediate', |
| 91 | + 'duration': '3 weeks', |
| 92 | + 'rating': '4.6', |
| 93 | + 'price': 'Free', |
| 94 | + 'imageName': 'django/django-plain.svg', |
| 95 | + 'description': 'Learn the basics of Django framework for building robust web applications.' |
93 | 96 | } |
| 97 | + |
94 | 98 | HTML = { |
95 | | -'courseName': 'HTML',#used on search results |
96 | | -'name': 'HTML/CSS Fundamentals', |
97 | | -'logo': 'html5-plain', |
98 | | -'difficulty': 'Beginner', |
99 | | -'duration': '3 Days', |
100 | | -'rating': '4.5', |
101 | | -'price': '$10', |
102 | | -'imageName': 'html5/html5-original.svg', |
103 | | -'description': 'Learn the basics of HTML and CSS for front-end web development.' |
| 99 | + 'courseName': 'HTML', |
| 100 | + 'name': 'HTML/CSS Fundamentals', |
| 101 | + 'logo': 'html5-plain', |
| 102 | + 'difficulty': 'Beginner', |
| 103 | + 'duration': '3 Days', |
| 104 | + 'rating': '4.5', |
| 105 | + 'price': 'Free', |
| 106 | + 'imageName': 'html5/html5-original.svg', |
| 107 | + 'description': 'Learn the basics of HTML and CSS for front-end web development.' |
104 | 108 | } |
| 109 | + |
105 | 110 | Angular = { |
106 | | -'courseName': 'Angular',#used on search results |
107 | | -'name' : 'Angular Devloper', |
108 | | -'logo' : 'angularjs-plain', |
109 | | -'difficulty' : 'Intermediate', |
110 | | -'duration': '3 Days', |
111 | | -'rating': '4.5', |
112 | | -'price': '$10', |
113 | | -'imageName': 'angularjs/angularjs-original.svg', |
114 | | -'description': 'Learn the basics of Angular for front-end web development.' |
115 | | -} |
| 111 | + 'courseName': 'Angular', |
| 112 | + 'name' : 'Angular Devloper', |
| 113 | + 'logo' : 'angularjs-plain', |
| 114 | + 'difficulty' : 'Intermediate', |
| 115 | + 'duration': '3 Days', |
| 116 | + 'rating': '4.5', |
| 117 | + 'price': 'Free', |
| 118 | + 'imageName': 'angularjs/angularjs-original.svg', |
| 119 | + 'description': 'Learn the basics of Angular for front-end web development.' |
| 120 | +} |
116 | 121 |
|
117 | 122 | PHP = { |
118 | | - 'courseName': 'PHP',#used on search results |
| 123 | + 'courseName': 'PHP', |
119 | 124 | 'name': 'PHP Programming', |
120 | 125 | 'logo': 'php-plain', |
121 | 126 | 'difficulty': 'Intermediate', |
122 | 127 | 'duration': '4 weeks', |
123 | 128 | 'rating': '4.6', |
124 | | - 'price': '$12', |
| 129 | + 'price': 'Free', |
125 | 130 | 'imageName': '/php/php-original.svg', |
126 | 131 | 'description': 'Learn PHP scripting language for web development and server-side scripting.' |
127 | 132 | } |
| 133 | + |
128 | 134 | Swift = { |
129 | | - 'courseName': 'Swift',#used on search results |
| 135 | + 'courseName': 'Swift', |
130 | 136 | 'name': 'Swift Programming', |
131 | 137 | 'logo': 'swift-plain', |
132 | 138 | 'difficulty': 'Beginner', |
133 | 139 | 'duration': '2 weeks', |
134 | 140 | 'rating': '4.8', |
135 | | - 'price': '$9', |
| 141 | + 'price': 'Free', |
136 | 142 | 'imageName': 'swift/swift-original.svg', |
137 | 143 | 'description': 'Get started with Swift programming language for iOS and macOS app development.' |
138 | 144 | } |
| 145 | + |
139 | 146 | SQL = { |
140 | | - 'courseName': 'SQL',#used on search results |
| 147 | + 'courseName': 'SQL', |
141 | 148 | 'name': 'SQL Fundamentals', |
142 | 149 | 'logo': 'mysql-plain', |
143 | 150 | 'difficulty': 'Beginner', |
144 | 151 | 'duration': '3 weeks', |
145 | 152 | 'rating': '4.7', |
146 | | - 'price': '$7', |
| 153 | + 'price': 'Free', |
147 | 154 | 'imageName': 'mysql/mysql-original.svg', |
148 | 155 | 'description': 'Learn the basics of SQL for managing and querying databases.' |
149 | 156 | } |
| 157 | + |
150 | 158 | NodeJS = { |
151 | | - 'courseName': 'NodeJS',#used on search results |
| 159 | + 'courseName': 'NodeJS', |
152 | 160 | 'name': 'Node.js Development', |
153 | 161 | 'logo': 'nodejs-plain', |
154 | 162 | 'difficulty': 'Intermediate', |
155 | 163 | 'duration': '2 weeks', |
156 | 164 | 'rating': '4.9', |
157 | | - 'price': '$10', |
| 165 | + 'price': 'Free', |
158 | 166 | 'imageName': 'nodejs/nodejs-original.svg', |
159 | 167 | 'description': 'Build scalable network applications using Node.js runtime environment.' |
160 | 168 | } |
| 169 | + |
161 | 170 | Rails = { |
162 | | - 'courseName': 'RubyOnRails',#used on search results |
| 171 | + 'courseName': 'RubyOnRails', |
163 | 172 | 'name': 'Ruby on Rails Development', |
164 | 173 | 'logo': 'rails-plain', |
165 | 174 | 'difficulty': 'Intermediate', |
166 | 175 | 'duration': '4 weeks', |
167 | 176 | 'rating': '4.5', |
168 | | - 'price': '$15', |
| 177 | + 'price': 'Free', |
169 | 178 | 'imageName': 'rails/rails-original-wordmark.svg', |
170 | 179 | 'description': 'Learn web development with the Ruby on Rails framework.' |
171 | 180 | } |
| 181 | + |
172 | 182 | VueJS = { |
173 | | - 'courseName': 'VueJS',#used on search results |
| 183 | + 'courseName': 'VueJS', |
174 | 184 | 'name': 'Vue.js Essentials', |
175 | 185 | 'logo': 'vuejs-plain', |
176 | 186 | 'difficulty': 'Beginner', |
177 | 187 | 'duration': '1 week', |
178 | 188 | 'rating': '4.7', |
179 | | - 'price': '$8', |
| 189 | + 'price': 'Free', |
180 | 190 | 'imageName': 'vuejs/vuejs-original.svg', |
181 | 191 | 'description': 'Introduction to Vue.js for building interactive user interfaces.' |
182 | 192 | } |
| 193 | + |
183 | 194 | DataScience = { |
184 | | - 'courseName': 'DataScience',#used on search results |
| 195 | + 'courseName': 'DataScience', |
185 | 196 | 'name': 'Data Science with Python', |
186 | 197 | 'logo': 'python-plain', |
187 | 198 | 'difficulty': 'Intermediate', |
188 | 199 | 'duration': '6 weeks', |
189 | 200 | 'rating': '4.8', |
190 | | - 'price': '$20', |
| 201 | + 'price': 'Free', |
191 | 202 | 'imageName': 'python/python-original.svg', |
192 | 203 | 'description': 'Explore data analysis and machine learning using Python.' |
193 | 204 | } |
| 205 | + |
194 | 206 | Android = { |
195 | | - 'courseName': 'Android',#used on search results |
| 207 | + 'courseName': 'Android', |
196 | 208 | 'name': 'Android App Development', |
197 | 209 | 'logo': 'android-plain', |
198 | 210 | 'difficulty': 'Intermediate', |
199 | 211 | 'duration': '5 weeks', |
200 | 212 | 'rating': '4.7', |
201 | | - 'price': '$18', |
| 213 | + 'price': 'Free', |
202 | 214 | 'imageName': 'android/android-original.svg', |
203 | 215 | 'description': 'Build mobile apps for the Android platform using Java and Android Studio.' |
204 | 216 | } |
| 217 | + |
205 | 218 | Cybersecurity = { |
206 | | - 'courseName': 'Cybersecurity',#used on search results |
| 219 | + 'courseName': 'Cybersecurity', |
207 | 220 | 'name': 'Cybersecurity Fundamentals', |
208 | 221 | 'logo': 'security-plain', |
209 | 222 | 'difficulty': 'Beginner', |
210 | 223 | 'duration': '2 weeks', |
211 | 224 | 'rating': '4.5', |
212 | | - 'price': '$9', |
| 225 | + 'price': 'Free', |
213 | 226 | 'imageName': 'javascript/javascript-original.svg', |
214 | 227 | 'description': 'Introduction to cybersecurity principles and practices.' |
215 | 228 | } |
0 commit comments