forked from sindresorhus/bower-components
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
63 lines (63 loc) · 2.64 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="description" content="List of Enyo components">
<meta name="author" content="Blaine Bublitz">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>Enyo components</title>
<link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Lato:400,700,900">
<link rel="stylesheet" href="http://netdna.bootstrapcdn.com/twitter-bootstrap/2.1.1/css/bootstrap-combined.min.css">
<link rel="stylesheet" href="css/main.css">
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
<a href="https://github.com/MeatballIndustries/enyo-components"><img style="position: absolute; top: 0; right: 0; border: 0;" src="https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png" alt="Fork me on GitHub"></a>
<div class="container">
<header class="header row">
<div class="span12">
<h1>Enyo components</h1>
<h2>List of available <a href="http://enyojs.com">Enyo</a> components</h2>
</div>
</header>
<hr>
<section class="main">
<div id="loading">
<p>Loading components...</p>
<p><small>Might take some time on first load</small></p>
</div>
<div id="components"></div>
</section>
<footer class="credit row">
<div class="span12"><a href="http://sindresorhus.com">Original Bower Site by <img src="http://gravatar.com/avatar/d36a92237c75c5337c17b60d90686bf9.png?s=50" width="25" height="25" alt="Sindre Sorhus">Sindre Sorhus</a></div>
<div class="span12"><a href="http://github.com/phated">Enyo Fork by <img src="http://gravatar.com/avatar/ac1c67fd906c9fecd823ce302283b4c1?s=50" width="25" height="25" alt="Sindre Sorhus">Blaine Bublitz</a></div>
</footer>
</div>
</body>
<script type="text/template" id="components-template">
<table class="table">
<caption>
<input style="display:none" class="search input-medium search-query" type="search" placeholder="Search in <%= components.length %> components..." autofocus>
</caption>
<thead>
<tr>
<th class="sort" data-sort="name">Name</th>
<th class="sort" data-sort="url">Url</th>
</tr>
</thead>
<tbody class="list">
<% _.each( components, function( el ) { %>
<% var webUrl = el.url.replace('git://', 'https://').replace(/.git$/, ''); %>
<tr>
<td class="name"><a href="<%- webUrl %>"><%- el.name %></a></td>
<td class="url"><a href="<%- webUrl %>"><%- el.url %></a></td>
</tr>
<% }); %>
</tbody>
</table>
</script>
<script src="dist/main.js"></script>
</html>