-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
76 lines (71 loc) · 3.2 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<!doctype html>
<html lang="en">
<head>
<title>SciC @ Github</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="icon" href="https://www.scic.com/favicon.ico" type="image/vnd.microsoft.icon" />
<link href="https://www.scic.com/favicon.ico" rel="icon" />
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css">
<link rel="stylesheet" href="styles/default.css">
</head>
<body style="padding-top: 56px;">
<nav class="navbar navbar-expand-md navbar-dark bg-dark fixed-top">
<a class="navbar-brand" href="#">
<img src="./assets/scic_white_42x20.png" width="42" alt="SciC">
</a>
<button class="navbar-toggler d-lg-none" type="button" data-toggle="collapse" data-target="#collapsibleNavId"
aria-controls="collapsibleNavId" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="collapsibleNavId">
<ul class="navbar-nav mr-auto mt-2 mt-lg-0">
<!-- Needed for spacing -->
</ul>
<form class="form-inline my-2 my-lg-0">
<input class="form-control mr-sm-2" type="text" id="search" placeholder="Search our repos">
</form>
<a class="navbar-brand" style="margin-right: 0; margin-left: 1rem; font-size: 1rem;" href="https://github.com/ScientificC/">
<span style="color: #999;">Scientific C</span>
</a>
</div>
</nav>
<div class="jumbotron">
<h1 class="display-4 text-right">Scientific C Open Source at GitHub</h1>
<br>
<p class="lead text-right">
<a class="btn btn-primary btn-xl" style="margin: 5px;" href="https://github.com/ScientificC" role="button">
Explore Open Source at Sci C
</a>
<a class="btn btn-primary btn-xl" style="margin: 5px;" href="https://scic-docs.readthedocs.io/" role="button">
Explore Documentation
</a>
</p>
</div>
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="scic_repo_header shadow-sm p-3 mb-3 bg-dark">
</div>
<div id="wrapper">
</div>
</div>
</div>
</div>
<div class="gap_footer"></div>
<footer class="footer bg-dark">
<div class="container text-center">
<p>© Copyright <a href="#">SciC</a> 2017-<script>
document.write(new Date().getFullYear());
</script>
</p>
</div>
</footer>
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="https://code.jquery.com/jquery-3.3.1.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js"></script>
<script type="text/javascript" src="js/orgs.js"></script>
<script type="text/javascript" src="js/repos.js"></script>
</body>
</html>