-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
38 lines (33 loc) · 1.46 KB
/
index.html
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
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>GitList | List all GitHub Repos in HTML</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="/style.css">
</head>
<body id="body" class="bg-info-subtle" data-bs-theme="light">
<div class="sticky-top">
<div id="navbar" class="mx-3 my-0 px-0 py-1 navbar navbar-expand-lg d-flex align-items-start bg-info-subtle">
</div>
<span>
<div class="inverted-topleft-corner bg-info-subtle"></div>
<div class="inverted-topright-corner bg-info-subtle"></div>
</span>
</div>
<div style="display:flex; flex-direction:column;">
<div id="content" class="mx-3 rounded-5 bg-body tabcontent content">
<div id="readme"></div>
</div>
<div class="inverted-bottomleft-corner bg-info-subtle"></div>
<div class="inverted-bottomright-corner bg-info-subtle"></div>
<div class="bottomedge sticky-bottom bg-info-subtle"></div>
</div>
<footer>
<div id="footer"></div>
</footer>
<script src="https://cdn.jsdelivr.net/npm/marked/marked.min.js"></script>
<script src="/scripts/repopage.js"></script>
</body>
</html>