-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
80 lines (70 loc) · 4.33 KB
/
index.html
File metadata and controls
80 lines (70 loc) · 4.33 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
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
<!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">
<meta name="description" content="">
<meta name="author" content="">
<title>Layer8x - Layer 8's Code Lab</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.1/css/materialize.min.css">
<link href="http://fonts.googleapis.com/css?family=Montserrat:400,700" rel="stylesheet" type="text/css">
<link href='http://fonts.googleapis.com/css?family=Kaushan+Script' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Droid+Serif:400,700,400italic,700italic' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Roboto+Slab:400,100,300,700' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="/css/main.css" charset="utf-8">
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body ng-app="codeLab">
<nav class="blue">
<div class="nav-wrapper">
<a href="#" class="brand-logo center">Layer8x - Code Lab</a>
<ul id="nav-mobile" class="left">
<li><a href="http://layer8.network"><span class="fa fa-fw fa-chevron-left"></span> <span class="hide-on-med-and-down">Return to Layer 8</span></a></li>
<li><a href="http://github.com/layer8x"><span class="fa fa-fw fa-github-alt"></span> <span class="hide-on-med-and-down">GitHub</span></a></li>
</ul>
</div>
</nav>
<div class="container" ng-controller="RepoController">
<div class="progress" ng-hide="loaded">
<div class="indeterminate"></div>
</div>
<div class="card light-blue lighten-4 hoverable" ng-repeat="repo in repos | orderBy:'-stargazers_count'">
<div class="card-content row">
<div class="col s8">
<h1>{{ repo.name }}</h1>
<p>{{ repo.description }}</p>
</div>
<div class="col s4">
<ul class="collection">
<li class="collection-item"><i class="fa fa-fw fa-star-o"></i>Stars<span class="badge">{{ repo.stargazers_count }}</span></li>
<li class="collection-item"><i class="fa fa-fw fa-code-fork"></i>Forks<span class="badge">{{ repo.forks_count }}</span></li>
<li class="collection-item"><i class="fa fa-fw fa-eye"></i>Watchers<span class="badge">{{ repo.watchers_count }}</span></li>
</ul>
</div>
</div>
<div class="card-action row">
<div class="col s2">
<a href="{{ repo.html_url }}" class="btn-large btn-floating waves-effect waves-light teal accent-3"><i class="fa fa-fw fa-github"></i></a>
</div>
<div class="col s10 right-align">
<a href="{{ repo.pages_url }}" ng-show="repo.has_pages" class="btn-large waves-effect waves-light teal"><i class="fa fa-fw fa-file-o"></i> <span class="hide-on-med-and-down">Website</span></a>
<a href="{{ repo.html_url + '/wiki' }}" ng-show="repo.has_wiki" class="btn-large waves-effect waves-light teal"><i class="fa fa-fw fa-wikipedia-w"></i> <span class="hide-on-med-and-down">Wiki</span></a>
<a href="{{ repo.html_url + '/issues' }}" ng-show="repo.has_issues" class="btn-large waves-effect waves-light teal"><i class="fa fa-fw fa-exclamation-circle"></i> <span class="hide-on-med-and-down">Issues</span></a>
<a href="{{ repo.html_url + '/pulls' }}" ng-show="repo.has_issues" class="btn-large waves-effect waves-light teal"><i class="fa fa-fw fa-code"></i> <span class="hide-on-med-and-down">PR's</span></a>
</div>
</div>
</div>
</div>
<script src="//code.jquery.com/jquery-1.11.3.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.1/js/materialize.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/angular.js/1.5.0-beta.1/angular.js" charset="utf-8"></script>
<script src="/js/app.js" charset="utf-8"></script>
</body>
</html>