forked from opencodeiiita/Collaborative-Web
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject-issues.html
More file actions
48 lines (43 loc) · 1.56 KB
/
project-issues.html
File metadata and controls
48 lines (43 loc) · 1.56 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Opencode | Project Info</title>
<link rel="icon" type="image/png" href="img/favicon-opencode.ico" />
<!-- Favicons -->
<link href="img/favicon.png" rel="icon" />
<link href="img/apple-touch-icon.png" rel="apple-touch-icon" />
<script
src="https://use.fontawesome.com/releases/v5.15.3/js/all.js"
crossorigin="anonymous"
></script>
<!-- Bootstrap CSS File -->
<link href="lib/bootstrap/css/bootstrap.min.css" rel="stylesheet" />
<!-- Custom CSS -->
<link rel="stylesheet" href="css/project-issues-style.css" />
</head>
<body>
<header>
<div class="px-4 pt-5 my-5 text-center">
<h1 class="page-heading display-4 font-weight-bold">Project Issues</h1>
<div class="col-lg-6 mx-auto">
<p class="lead mb-4">Below are some project issues listed</p>
</div>
</div>
</header>
<main class="container">
<div class="project-issues-container w-75 mx-auto"></div>
</main>
<div class="spinner-container">
<div class="spinner-border text-info my-5" role="status">
<span class="sr-only">Loading...</span>
</div>
</div>
<div class="load-more-btn d-flex justify-content-center">
<button class="btn btn-primary" onclick="loadMore()">Load More</button>
</div>
<script src="js/project-issues.js"></script>
</body>
</html>