forked from LLNL/llnl.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
51 lines (40 loc) · 1.52 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
---
title: LLNL Software Catalog
layout: portal
---
{% raw %}
<h2 class="page-header text-center">
<span ng-show="repoData"> {{ repoData.length }} </span>
Software Repositories
</h2>
<div class="container">
<div class="col-xs-6 col-xs-offset-3">
<input id="filterRepos" type="text" style="width: 100%" autofocus placeholder="Filter Repositories">
</div>
</div>
<section ng-show="repoData" id="repositories" class="flex-container">
<div ng-repeat="repo in repoData | filter:searchText | orderBy:predicate:reverse" class="flex-item {{repo.name}} {{repo.language}}">
<h4 class="text-center">
<a href="{{ repo.html_url }}"> {{ repo.name }} </a>
<small>{{ repo.language }}</small>
</h4>
<p class="text-justify">{{ repo.description }}</p>
<p class="stats text-center">
<a href="{{ repo.html_url }}">
<span class="fa fa-github"></span>
</a>
<a href="{{ repo.stargazers_url }}">
<span class="fa fa-star"></span> {{ repo.stargazers_count }}
</a>
<a href="{{ repo.html_url }}/network">
<span class="fa fa-code-fork"></span> {{ repo.forks_count }}
</a>
<a ng-if="repo.homepage" href="{{ repo.homepage }}/">
<span class="fa fa-globe"></span>
</a>
</p>
</div>
</section>
{% endraw %}
<script src="//ajax.googleapis.com/ajax/libs/angularjs/1.5.8/angular.min.js"></script>
<script src="js/github-dynamic.js"></script>