-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
104 lines (101 loc) · 2.98 KB
/
index.html
File metadata and controls
104 lines (101 loc) · 2.98 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
93
94
95
96
97
98
99
100
101
102
103
104
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>GitHub Documentation Hub</title>
<style>
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
line-height: 1.6;
color: #333;
max-width: 800px;
margin: 0 auto;
padding: 2rem;
background-color: #f8f9fa;
}
.container {
background: white;
padding: 3rem;
border-radius: 8px;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
h1 {
color: #2c3e50;
border-bottom: 3px solid #3498db;
padding-bottom: 0.5rem;
margin-bottom: 2rem;
}
.description {
font-size: 1.1rem;
margin-bottom: 2rem;
color: #555;
}
.repositories {
list-style: none;
padding: 0;
}
.repo-item {
background: #f8f9fa;
margin: 1rem 0;
padding: 1.5rem;
border-radius: 6px;
border-left: 4px solid #3498db;
}
.repo-link {
text-decoration: none;
color: #2980b9;
font-weight: 600;
font-size: 1.2rem;
}
.repo-link:hover {
color: #1a5490;
text-decoration: underline;
}
.repo-description {
margin-top: 0.5rem;
color: #666;
}
.footer {
margin-top: 3rem;
padding-top: 2rem;
border-top: 1px solid #eee;
text-align: center;
color: #888;
}
.github-link {
color: #2980b9;
text-decoration: none;
}
.github-link:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<div class="container">
<h1>📚 GitHub Documentation Hub</h1>
<p class="description">
Welcome to the documentation hub for various GitHub repositories.
This landing page provides access to automatically generated documentation
for multiple projects hosted on GitHub Pages.
</p>
<h2>Available Documentation</h2>
<ul class="repositories">
<li class="repo-item">
<a href="./TaskScheduler/" class="repo-link">TaskScheduler</a>
<p class="repo-description">
Cooperative multitasking for Arduino and other microcontrollers.
Complete API documentation and usage examples.
</p>
</li>
</ul>
<div class="footer">
<p>
Documentation hosted on <a href="https://pages.github.com/" class="github-link">GitHub Pages</a> |
Generated automatically from repository sources
</p>
</div>
</div>
</body>
</html>