-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
141 lines (121 loc) · 6.62 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
<!--
Copyright 2017 IBM Corp.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<html ng-app="app">
<head>
<title>Open Source Community</title>
<link rel="shortcut icon" href="images/favicon.ico">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="css/custom.css">
</head>
<body ng-controller="MainController" class="home page page-id-361 page-template-default" >
<div class="container">
<div id="pnext-top-menu" class="pn-top-menu links-top-menu" role="navigation" aria-label="Main navigation">
<div class="flag" style="display:inline-block;">
<span class="link-home flag-img">
<a rel="home" class="bind_org_url pn-nav-home" href="[[ORG_URL]]" style="text-align: center;">
<img scale="0" class="pn-logo-image" src="images/logo.png">
<span class="teal bind_org_name">[[ORG_NAME]]</span>
</a>
</span>
</div>
<div style="display:inline-block; float:right; margin-top: 5px;">
If you want to create a project for <span class="bind_org_name">[[ORG_NAME]]</span>, check the template
<a class="bind_template_url" target="_blank" href="[[TEMPLATE_URL]]">here</a>
<p align="center">
<a href="https://join.slack.com/t/odmdev/shared_invite/zt-1qykoafbm-uM9LQrNLzzphvbrEf8xSBw">
Follow us on slack
<br>
<img src="https://a.slack-edge.com/436da/marketing/img/meta/favicon-32.png">
</a>
</p>
</div>
</div>
<div class="pn-pcon" style="margin-bottom: 40px;">
<!-- Margin bottom to prevent footer hide content -->
<section id="post-715" class="post-715 page type-page status-publish hentry">
<h1 class="pn-page-title">Repositories</h1>
<div id="githubCategories" style="margin-top:10px;">
<form>
<input ng-model="searchRepos" id="gitRepoFilter" type="text" placeholder="Filter Repositories" autofocus>
</form>
<div ng-click="click('')" ng-class="{gitHubFilterActive: myFilter=='', githubFilter: myFilter!=''}">
ALL Repositories
</div>
<div ng-repeat="filter in arrayOfFilters track by $index" ng-click="click(filter)"
ng-class="{githubFilterActive: myFilter==filter, githubFilter: myFilter!=filter}" ng-bind="filter"
ng-if="filter != ''" >
</div>
</div>
<div id="pn-repo-listing" class="pn-repo-listing" >
<div class="pn-repo-item" data-tag="all">
<div class="pn-columns" style="margin-top:30px;">
<div class="pn-col-6-4"><header class="pn-repo-header"></header><div class="pn-repo-content"></div></div>
<div class="pn-col-6-2">
<a id="sort" role="button" ng-click="changeOrder()">Last Updated <span ng-show="reverseSort">▲</span>
<span ng-show="!reverseSort">▼</span></a>
</div>
</div>
</div>
<div ng-repeat="arrayOfFiltersAndData in masterArrayOfFiltersAndData | filter: {tags: myFilter} | filter: searchRepos | orderBy: sortType:reverseSort" class="pn-repo-item" data-tag="all">
<div class="pn-columns">
<div class="pn-col-6-4">
<header class="pn-repo-header">
<h3><a ng-bind="arrayOfFiltersAndData.repositoryData.name" ng-href="{{arrayOfFiltersAndData.repositoryData.html_url}}"></a></h3>
</header>
<div class="pn-repo-content">
<p ng-bind="arrayOfFiltersAndData.repositoryData.description"></p>
</div>
</div>
<div class="pn-col-6-2">
<div class="pn-repo-footer">
<footer ng-bind="arrayOfFiltersAndData.repositoryData.pushed_at | date : medium" class="pn-post-meta pn-asset-meta">
</footer>
</div>
</div>
</div>
</div>
</div>
</section>
</div>
<div id="snackbar">
It seems that we have reached the limit of calling the GitHub API.<br />
Please try again later (<span id=rate_limit_reset></span>).
</div>
</div>
<div id="footer" style="position: fixed; bottom: 0; width: 100%; text-align: center; padding-bottom: 5px; background-color: white;">
<hr style="margin-top: 0;" />
<span>
Problem with this page? Please report an issue
<a class="bind_issues_url" target="_blank" href="[[ISSUE_URL]]">here</a>.
</span>
</div>
</body>
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" crossorigin="anonymous"
integrity="sha256-k2WSCIexGzOj3Euiig+TlR8gA0EmPjuc79OEeY5L45g="></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.5/angular.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.5/angular-route.min.js"></script>
<script src="js/app.js"></script>
<script src="js/controllers/MainController.js"></script>
<script src="js/services/github.js"></script>
<script src="js/services/config.js"></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-102854187-1', 'auto');
ga('send', 'pageview');
</script>
</html>