-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathindex.html
87 lines (87 loc) · 3.77 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
77
78
79
80
81
82
83
84
85
86
87
<!DOCTYPE HTML>
<html ng-app="fossnp">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<link href="assets/css/bootstrap.css" rel="stylesheet">
<link href="assets/css/bootstrap-responsive.css" rel="stylesheet">
<link href="assets/css/app.css" rel="stylesheet">
<link rel="icon"
type="image/icon"
href="assets/img/favicon.ico">
<title>FOSS Nepal</title>
</head>
<body>
<header class="navbar navbar-fixed-top navbar-inverse">
<div class="navbar-inner">
<div class="container">
<a id="logo" href= "./index.html"> FOSS Nepal </a>
<nav>
<ul class="nav pull-right">
<li><a href="./guideline.html"> Contribute @ FOSS Nepal! </a></li>
<li><a href="https://github.com/foss-np"> Visit the Github Repo </a></li>
</ul>
</nav>
</div>
</div>
</header>
<div class="center hero-unit">
<img src="assets/img/fossnepal-logo.png" alt="FOSS Nepal Logo">
<h1>Welcome to FOSS Nepal</h1>
<p>The FOSS Nepal Community Github page.</p>
<iframe src="https://ghbtns.com/github-btn.html?user=foss-np&type=follow&count=true&size=large" allowtransparency="true" frameborder="0" scrolling="0" width="170" height="30"></iframe>
</div>
<div class="alert alert-info">
<button type="button" class="close" data-dismiss="alert">×</button>
<h4>Heads Up!</h4>
Please check the <a href="./guideline.html">contribution guidelines</a> before you start contributing to these projects.
</div>
<table class="table table-striped">
<caption><h2>Projects</h2></caption>
<thead>
<tr>
<th>Name</th>
<th>Description</th>
<th>Stars</th>
<th>Forks</th>
<th>Issues</th>
</tr>
</thead>
<tbody ng-controller="mainCtrl">
<tr ng-repeat='repo in repos'>
<td><a href="https://github.com/foss-np/{{repo.name}}">{{ repo.name }}</a></td>
<td>{{ repo.description }}</td>
<td>
<iframe class="github-btn" src="https://ghbtns.com/github-btn.html?user=foss-np&repo={{repo.name}}&type=watch&count=true" allowtransparency="true" frameborder="0" scrolling="0" width="100px" height="20px"></iframe>
</td>
<td>
<iframe class="github-btn" src="https://ghbtns.com/github-btn.html?user=foss-np&repo={{repo.name}}&type=fork&count=true" allowtransparency="true" frameborder="0" scrolling="0" width="102px" height="20px">
</iframe>
</td>
<td><a href="https://github.com/foss-np/{{repo.name}}/issues" class="badge badge-inverse">{{ repo.open_issues }}</a>
</td>
</tr>
</tbody>
</table>
<footer class="footer">
<div class="container">
<address>
<strong>FOSS Nepal Community</strong><br>
P. O. Box 19162<br>
Kathmandu, Nepal<br>
<abbr title="IRC Channel">IRC:</abbr> #foss-nepal on irc.freenode.net<br>
E-mail: <a href="mailto:[email protected]">[email protected]</a><br>
Website: <a href="https://fossnepal.herokuapp.com/" target="_blank">fossnepal.herokuapp.com</a><br>
Mailing List: <a href="https://groups.google.com/forum/#!forum/foss-nepal" target="_blank">groups.google.com/forum/#!forum/foss-nepal</a><br>
</address>
<p>Content is licensed under <a href="http://www.gnu.org/copyleft/fdl.html" target ="_blank">GNU Free Documentation License </a>
</div>
</footer>
<script
src="https://code.jquery.com/jquery-2.2.4.min.js"
integrity="sha256-BbhdlvQf/xTY9gja0Dq3HiwQF8LaCRTXxZKRutelT44="
crossorigin="anonymous"></script>
<script src="assets/js/bootstrap.min.js" type="text/javascript"></script>
<script src="assets/js/angular.min.js" type="text/javascript"></script>
<script src="assets/js/app.js" type="text/javascript"></script>
</body>
</html>