mirror of
https://github.com/System-End/My-website.git
synced 2026-04-19 23:22:50 +00:00
32 lines
No EOL
882 B
HTML
32 lines
No EOL
882 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>GitHub Projects</title>
|
|
<link rel="stylesheet" href="/pages/style.css">
|
|
</head>
|
|
<body>
|
|
<div id="loading">
|
|
<div class="spinner"></div>
|
|
</div>
|
|
<div id="navbar"></div>
|
|
<script>
|
|
fetch('/pages/navbar.html')
|
|
.then(response => response.text())
|
|
.then(data => {
|
|
document.getElementById('navbar').innerHTML = data;
|
|
});
|
|
</script>
|
|
<main>
|
|
<h1>My GitHub Projects</h1>
|
|
<ul id="repo-list"></ul>
|
|
</main>
|
|
<script>
|
|
window.addEventListener('load', () => {
|
|
document.getElementById('loading').style.display = 'none';
|
|
});
|
|
</script>
|
|
<script src="/scripts/github-repos.js"></script>
|
|
</body>
|
|
</html> |