1- beginner = [
2- {
3- 'courseName' : 'HTML' ,
4- 'price' : 'Free' ,
5- 'rating' : '4.8' ,
6- 'link' : '#' ,
7- 'imageName' : 'popular-02.jpg'
8- },
9- {
10- 'courseName' : 'CSS' ,
11- 'price' : 'Free' ,
12- 'rating' : '5.0' ,
13- 'link' : '#' ,
14- 'imageName' : 'popular-01.jpg'
15- },
16- {
17- 'courseName' : 'JavaScript' ,
18- 'price' : '$4.99' ,
19- 'rating' : '4.8' ,
20- 'link' : '#' ,
21- 'imageName' : 'popular-04.jpg'
22- },
23- {
24- 'courseName' : 'AWS Basics' ,
25- 'price' : 'Free' ,
26- 'rating' : '5.0' ,
27- 'link' : '#' ,
28- 'imageName' : 'popular-03.jpg'
29- }
30- ]
31-
32- advanced = [
33- {
34- 'courseName' : 'Django' ,
35- 'price' : 'Free' ,
36- 'rating' : '4.8' ,
37- 'link' : '#' ,
38- 'imageName' : 'popular-01.jpg'
39- },
40- {
41- 'courseName' : 'Numpy' ,
42- 'price' : '$4.99' ,
43- 'rating' : '5.0' ,
44- 'link' : '#' ,
45- 'imageName' : 'popular-02.jpg'
46- },
47- {
48- 'courseName' : 'ML & AI' ,
49- 'price' : '$4.99' ,
50- 'rating' : '5.0' ,
51- 'link' : 'url_for("ML")' ,
52- 'imageName' : 'popular-03.jpg'
53- },
54- {
55- 'courseName' : 'C#' ,
56- 'price' : '$4.99' ,
57- 'rating' : '5.0' ,
58- 'link' : '#' ,
59- 'imageName' : 'popular-04.jpg'
60- }
61- ]
1+ #imageName varible only gets used for menu.html macro on search results
622
633lecturesData = [
644 {
8424 }
8525]
8626
87- course = {
27+ reactjs = {
28+ 'courseName' : 'ReactJS' ,#used on search results
8829 'name' : 'ReactJS' ,
89- 'logo' : 'react' ,
30+ 'logo' : 'react-original ' ,
9031 'difficulty' : 'Intermediate' ,
9132 'duration' : '1 week' ,
9233 'rating' : '5.0' ,
9334 'price' : 'Free' ,
35+ 'imageName' : 'popular-02.jpg' ,
9436 'description' : 'ReactJS is a powerful, efficient and user-friendly JavaScript library for building interactive interfaces.'
9537}
9638ML = {
39+ 'courseName' : 'ML+AI' ,#used on search results
9740 'name' : 'Machine Learning' ,
98- 'logo' : 'python' ,
99- 'diffculty ' : 'Advanced ' ,
41+ 'logo' : 'python-plain ' ,
42+ 'difficulty ' : 'Advance ' ,
10043 'duration' : '3 week' ,
10144 'rating' : '4.9' ,
10245 'price' : '$25' ,
46+ 'imageName' : 'popular-02.jpg' ,
10347 'description' : 'Training computers to learn from data, improving performance without explicit instructions.'
10448}
49+ JavaScript = {
50+ 'courseName' : 'JavaScript' ,#used on search results
51+ 'name' : 'JavaScript Fundamentals' ,
52+ 'logo' : 'javascript-plain' ,
53+ 'difficulty' : 'Beginner' ,
54+ 'duration' : '4 weeks' ,
55+ 'rating' : '4.7' ,
56+ 'price' : '$20' ,
57+ 'imageName' : 'popular-02.jpg' ,
58+ 'description' : 'Learn the basics of JavaScript programming for front-end and back-end development.'
59+ }
60+
61+ Java = {
62+ 'courseName' : 'Java' ,#used on search results
63+ 'name' : 'Java Programming' ,
64+ 'logo' : 'java-plain' ,
65+ 'difficulty' : 'Intermediate' ,
66+ 'duration' : '5 weeks' ,
67+ 'rating' : '4.8' ,
68+ 'price' : '$30' ,
69+ 'imageName' : 'popular-02.jpg' ,
70+ 'description' : 'Get started with Java and object-oriented programming for building robust applications.'
71+ }
72+
73+ CSharp = {
74+ 'courseName' : 'C#' ,#used on search results
75+ 'name' : 'C# Essentials' ,
76+ 'logo' : 'csharp-plain' ,
77+ 'difficulty' : 'Beginner' ,
78+ 'duration' : '2 weeks' ,
79+ 'rating' : '4.5' ,
80+ 'price' : '$15' ,
81+ 'imageName' : 'popular-02.jpg' ,
82+ 'description' : 'Introduction to C# programming language and its applications in various domains.'
83+ }
84+ Django = {
85+ 'courseName' : 'Django' ,#used on search results
86+ 'name' : 'Django Framework' ,
87+ 'logo' : 'django-plain' ,
88+ 'difficulty' : 'Intermediate' ,
89+ 'duration' : '3 weeks' ,
90+ 'rating' : '4.6' ,
91+ 'price' : '$25' ,
92+ 'imageName' : 'popular-02.jpg' ,
93+ 'description' : 'Learn the basics of Django framework for building robust web applications.'
94+ }
0 commit comments