-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (39 loc) · 1.24 KB
/
Copy pathindex.html
File metadata and controls
43 lines (39 loc) · 1.24 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ActionsForge Dashboard</title>
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>ActionsForge Organization Dashboard</h1>
<p>Visualizing top repositories by GitHub stars</p>
</header>
<main>
<section id="chart-section">
<canvas id="repoContributions" width="400" height="200"></canvas>
</section>
<section id="data-table-section">
<h2>Top Repositories Data</h2>
<table id="data-table">
<thead>
<tr>
<th>Repository</th>
<th>Stars</th>
</tr>
</thead>
<tbody>
<!-- Data will be injected here -->
</tbody>
</table>
</section>
</main>
<footer>
<p>Powered by <a href="https://github.com/actionsforge" target="_blank">ActionsForge</a>. Data updates weekly.</p>
</footer>
<script src="scripts.js"></script>
</body>
</html>