We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 87a6ecf commit f614882Copy full SHA for f614882
1 file changed
assets/js/projects.js
@@ -35,7 +35,18 @@ $(document).ready(function(){
35
let sorted = result.sort(window.rankingSorter("stargazers_count", "name"))
36
37
for(let repo in sorted) {
38
- if (sorted[repo]['archived'] === false && sorted[repo]['description'] !== null && sorted[repo]['fork'] === false) {
+ let process_repo = true;
39
+ if (sorted[repo]['archived'] === true) {
40
+ process_repo = false;
41
+ }
42
+ if (sorted[repo]['description'] === null) {
43
44
45
+ if (sorted[repo]['fork'] === true && !sorted[repo]['topics'].includes("featured-fork")) {
46
47
48
+
49
+ if (process_repo) {
50
let column = document.createElement("div")
51
column.className = "col-lg-4 mb-5"
52
container.appendChild(column)
0 commit comments