-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
63 lines (51 loc) · 2.02 KB
/
index.html
File metadata and controls
63 lines (51 loc) · 2.02 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>LB Planner API Docs</title>
<link rel="stylesheet" href="styles.css">
<link rel="icon" href="logo.png" type="image/png"> <!-- Favicon -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
</head>
<body>
<!-- Logo -->
<img src="logo.png" alt="LB Planner Logo" id="logo">
<h1>LB Planner API Docs</h1>
<p>Welcome to the LB Planner API Documentation. Choose the appropriate documentation below:</p>
<div class="container">
<!-- Moodle (PHP) Documentation Link -->
<div class="doc-card">
<i class="fas fa-plug icon"></i>
<h2>Moodle Plugin</h2>
<p>Documentation for the moodle web service API.</p>
<a href="moodle/index.html" class="doc-button" target="_blank">View Documentation</a>
<br>
<br>
<a href="https://github.com/necodeIT/lb_planner_plugin" class="github-button" target="_blank">
<i class="fas fa-code-branch github-icon"></i> moodle
</a>
</div>
<!-- App (Dart) Documentation Link -->
<div class="doc-card">
<i class="fas fa-desktop icon"></i>
<h2>App</h2>
<p>Documentation for the application's source code.</p>
<a href="app/index.html" class="doc-button" target="_blank">View Documentation</a>
<br>
<br>
<a href="https://github.com/necodeIT/lb_planner_app" class="github-button" target="_blank">
<i class="fas fa-code-branch github-icon"></i> app
</a>
</div>
</div>
<br>
<br>
<!-- Footer -->
<footer>
<div class="footer-content">
The documentations are auto-generated through GitHub Actions based on the most recent commits to their respective repositories.
</div>
</footer>
</body>
</html>