forked from anuj840/learn-opensource.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathissues.html
40 lines (34 loc) · 1.52 KB
/
issues.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
39
40
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Learn Opensource</title>
<link rel="shortcut icon" href="./img/logo.png" type="image/png" />
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" />
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css">
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/aos.css">
<link rel="stylesheet" href="./css/style.css">
</head>
<body>
<script src="./js/component/navbar.js"></script>
<div class="container my-5">
<h4 class="display-6 text-main">Open issues for Contribution</h4>
<div class="row" id="issueCardContainer"></div>
</div>
<script src="./js/component/footer.js"></script>
<script src="https://kit.fontawesome.com/a3f929b7cc.js" crossorigin="anonymous"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"
integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous">
</script>
<script src="https://unpkg.com/[email protected]/dist/aos.js"></script>
<script type="module" src="./js/main.js"></script>
<script>
AOS.init({
duration: 700,
offset: 180
});
</script>
</body>
</html>