File size: 5,496 Bytes
4d45ff8
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Intermediate Path | Python Pathfinder</title>
    <link rel="stylesheet" href="style.css">
    <script src="https://cdn.tailwindcss.com"></script>
    <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
</head>
<body class="bg-gray-50 min-h-screen">
    <custom-navbar></custom-navbar>
    
    <main class="container mx-auto px-4 py-8">
        <div class="flex flex-col md:flex-row gap-8">
            <custom-sidebar path="intermediate"></custom-sidebar>
            
            <div class="flex-1">
                <div class="bg-white p-6 rounded-xl shadow-md mb-8">
                    <h1 class="text-3xl font-bold mb-4 text-blue-700">Intermediate Python Path</h1>
                    <p class="text-gray-600 mb-6">Advance your Python skills with object-oriented programming and basic Java integration.</p>
                    
                    <div class="bg-blue-50 p-4 rounded-lg border border-blue-200 mb-6">
                        <div class="flex items-center">
                            <i data-feather="info" class="text-blue-600 mr-2"></i>
                            <span class="font-medium">Your Progress: 0%</span>
                        </div>
                        <div class="w-full bg-gray-200 rounded-full h-2.5 mt-2">
                            <div class="bg-blue-600 h-2.5 rounded-full" style="width: 0%"></div>
                        </div>
                    </div>
                </div>

                <div class="grid md:grid-cols-2 gap-6">
                    <div class="bg-white p-6 rounded-xl shadow-md hover:shadow-lg transition">
                        <div class="flex items-center mb-4">
                            <div class="bg-blue-100 p-3 rounded-lg mr-4">
                                <i data-feather="layers" class="text-blue-600"></i>
                            </div>
                            <h3 class="text-xl font-semibold">OOP in Python</h3>
                        </div>
                        <p class="text-gray-600 mb-4">Learn classes, objects, inheritance, and polymorphism in Python.</p>
                        <a href="/module.html?id=oop" class="text-blue-600 font-medium inline-flex items-center">
                            Start Module <i data-feather="arrow-right" class="ml-1" width="18"></i>
                        </a>
                    </div>

                    <div class="bg-white p-6 rounded-xl shadow-md hover:shadow-lg transition">
                        <div class="flex items-center mb-4">
                            <div class="bg-green-100 p-3 rounded-lg mr-4">
                                <i data-feather="cpu" class="text-green-600"></i>
                            </div>
                            <h3 class="text-xl font-semibold">Modules & Packages</h3>
                        </div>
                        <p class="text-gray-600 mb-4">Organize your code with modules, packages, and understand imports.</p>
                        <a href="/module.html?id=modules" class="text-blue-600 font-medium inline-flex items-center">
                            Start Module <i data-feather="arrow-right" class="ml-1" width="18"></i>
                        </a>
                    </div>

                    <div class="bg-white p-6 rounded-xl shadow-md hover:shadow-lg transition">
                        <div class="flex items-center mb-4">
                            <div class="bg-purple-100 p-3 rounded-lg mr-4">
                                <i data-feather="activity" class="text-purple-600"></i>
                            </div>
                            <h3 class="text-xl font-semibold">Error Handling</h3>
                        </div>
                        <p class="text-gray-600 mb-4">Master try/except blocks and create custom exceptions.</p>
                        <a href="/module.html?id=error-handling" class="text-blue-600 font-medium inline-flex items-center">
                            Start Module <i data-feather="arrow-right" class="ml-1" width="18"></i>
                        </a>
                    </div>

                    <div class="bg-white p-6 rounded-xl shadow-md hover:shadow-lg transition">
                        <div class="flex items-center mb-4">
                            <div class="bg-yellow-100 p-3 rounded-lg mr-4">
                                <i data-feather="git-merge" class="text-yellow-600"></i>
                            </div>
                            <h3 class="text-xl font-semibold">Basic Java Integration</h3>
                        </div>
                        <p class="text-gray-600 mb-4">Learn to call Java from Python using JPype and understand JVM basics.</p>
                        <a href="/module.html?id=java-integration" class="text-blue-600 font-medium inline-flex items-center">
                            Start Module <i data-feather="arrow-right" class="ml-1" width="18"></i>
                        </a>
                    </div>
                </div>
            </div>
        </div>
    </main>

    <custom-footer></custom-footer>

    <script src="components/navbar.js"></script>
    <script src="components/footer.js"></script>
    <script src="components/sidebar.js"></script>
    <script src="script.js"></script>
    <script>feather.replace();</script>
</body>
</html>