-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
51 lines (44 loc) · 2.27 KB
/
index.html
File metadata and controls
51 lines (44 loc) · 2.27 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Python Solutions - LeetCode, Kattis, AOC & VicUtils</title>
<link rel="icon" href="VN.ico">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.9.0/styles/atom-one-dark.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/codemirror/5.65.2/codemirror.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/codemirror/5.65.2/theme/monokai.min.css">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<nav class="top-nav">
<div class="nav-brand">PythonSolutions</div>
<a href="https://github.com/Victorio-dev/PythonSolutions" class="portfolio-btn" target="_blank">Github →</a>
</nav>
<main id="app-root">
<div id="loading-screen">
<div class="loader"></div>
<p>Loading repository data...</p>
</div>
<div id="platform-selector" style="display: none;">
<h1>Choose a Platform</h1>
<div class="platform-grid" id="platform-grid"></div>
</div>
<div id="folder-view" style="display: none;">
<button class="back-button" id="back-button">← Back</button>
<h1 id="folder-title"></h1>
<div id="folder-cards"></div>
</div>
<div id="problem-view" style="display: none;"></div>
</main>
<div id="pyodide-loading" class="pyodide-status" style="position: fixed; bottom: 20px; right: 20px; background: #2d2d30; padding: 1rem; border-radius: 8px; box-shadow: 0 4px 12px rgba(0,0,0,0.3);">
<div class="loader-small"></div>
<span>Loading Python environment...</span>
</div>
<script src="https://cdn.jsdelivr.net/pyodide/v0.24.1/full/pyodide.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/codemirror/5.65.2/codemirror.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/codemirror/5.65.2/mode/python/python.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.9.0/highlight.min.js"></script>
<script src="script.js"></script>
</body>
</html>