-
Notifications
You must be signed in to change notification settings - Fork 906
Expand file tree
/
Copy pathindex.html
More file actions
92 lines (77 loc) · 2.04 KB
/
index.html
File metadata and controls
92 lines (77 loc) · 2.04 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Python Repository</title>
<meta name="description" content="Central hub for Python repository releases and learning content." />
<link rel="stylesheet" href="assets\style.css" />
</head>
<body>
<header class="hero">
<h1>Python Repository</h1>
<p>Documentation, learning paths, and versioned updates</p>
</header>
<main class="release-grid" aria-label="Primary Navigation">
<!-- Releases -->
<a href="releases.html" class="release-card accent-blue nav-card">
<header class="card-header">
<span class="version">Releases</span>
<span></span>
</header>
<section class="card-section">
<h3>Version History</h3>
<ul>
<li>Changelog and updates</li>
<li>Improvements over time</li>
</ul>
</section>
<section class="card-section">
<h3>Purpose</h3>
<ul>
<li>Track repository evolution</li>
<li>Stay informed</li>
</ul>
</section>
<section class="card-section">
<h3>Audience</h3>
<ul>
<li>Contributors</li>
<li>Active learners</li>
</ul>
</section>
</a>
<!-- Content -->
<a href="content.html" class="release-card accent-green nav-card">
<header class="card-header">
<span class="version">Content</span>
<span></span>
</header>
<section class="card-section">
<h3>Repository Map</h3>
<ul>
<li>Topics and learning paths</li>
<li>Structured overview</li>
</ul>
</section>
<section class="card-section">
<h3>Purpose</h3>
<ul>
<li>Explore what exists</li>
<li>Navigate efficiently</li>
</ul>
</section>
<section class="card-section">
<h3>Audience</h3>
<ul>
<li>New visitors</li>
<li>Returning users</li>
</ul>
</section>
</a>
</main>
<footer class="footer">
<p>Python Repository · GitHub Pages</p>
</footer>
</body>
</html>