This repository has been archived by the owner on Jul 25, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
52 lines (43 loc) · 1.59 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
<!DOCTYPE html>
<html>
<head>
<title>Meanbee Github</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="assets/css/stylesheet.css" />
<script src="//use.typekit.net/mfd3nbh.js"></script>
<script>try{Typekit.load();}catch(e){}</script>
<script data-main="assets/js/main" src="assets/js/require.js"></script>
</head>
<body>
<header>
<a href="/" class="meanbee-logo"><h1>Meanbee</h1></a>
<div class="intro">
<div class="intro-group">
<div class="intro-title">
<h2>Meanbee <span class="mega-octicon really-more-mega octicon-heart" alt="love"></span> Open Source.</h2>
</div>
</div>
</div>
</header>
<section id="js-projects" class="projects">
<div class="loading">
Loading..
</div>
</section>
<script type="x-tmpl-mustache" id="js-template-projects">
<ul>
{{#projects}}
<li>
<h2><a href="{{ html_url }}">{{ name }}</a></h2>
<span class="badge badge-stars"><span class="octicon octicon-star"></span> {{ stargazers_count }}</span>
<span class="badge badge-watchers"><span class="octicon octicon-eye"></span> {{ watchers_count }}</span>
<span class="badge badge-forks"><span class="octicon octicon-repo-forked"></span> {{ forks }}</span>
<p>
{{ description }}
</p>
</li>
{{/projects}}
</ul>
</script>
</body>
</html>