-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
103 lines (96 loc) · 3.11 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
<!DOCTYPE html>
<html lang="en">
<head>
<script
async
src="https://www.googletagmanager.com/gtag/js?id=G-063933E3C2"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "G-063933E3C2");
</script>
<title>Evoluteur at GitHub</title>
<link
rel="canonical"
href="https://evoluteur.github.io/github-projects-cards/"
/>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<meta name="theme-color" content="#bbdefb" />
<link rel="icon" type="image/png" href="favicon.png" />
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Marcellus"
/>
<link href="css/me.css" rel="stylesheet" />
<link href="css/code.css" rel="stylesheet" />
<script src="js/repos.js"></script>
<meta
name="keywords"
content="github, projects, cards, repo, repository, cardview, github-forks, github-stargazers, history, stars"
/>
<meta name="description" content="My GitHub projects" />
<meta
property="og:image"
content="https://evoluteur.github.io/github-projects-cards/github-projects-cards.png"
/>
</head>
<body onload="setupCodePage()">
<div class="nav">
<a href="https://evoluteur.github.io/">Evoluteur</a> > GitHub Projects
</div>
<section class="gpc">
<h1 id="title">Loading...</h1>
<div class="filters">
<div>
<label for="filter">Find</label>
<input type="text" onkeyup="filter(this.value)" id="filter" />
</div>
<div>
<label for="sortPicker">Sort by</label>
<select
type="text"
onchange="sort(this.value)"
name="sortPicker"
id="sortPicker"
>
<options>
<option value="name" selected>Name</option>
<option value="stargazers_count">Stars</option>
<option value="forks_count">Forks</option>
<option value="created_at">Created</option>
<option value="updated_at">Updated</option>
</options>
</select>
</div>
<span id="summary"></span>
</div>
<div id="evoluteur" class="projects"></div>
<div id="repos" class="projects"></div>
<div id="summary" class="projects"></div>
</section>
<footer>
<p>
<a href="https://github.com/evoluteur/github-projects-cards"
>GitHub-Projects-Cards</a
>
is open source at GitHub with MIT license.
</p>
<p>
Discover more ways to look at GitHub repositories (using
<a href="https://d3js.org/d3-force" target="d3">d3-force</a>
layout) with my other project
<a href="https://evoluteur.github.io/meet-the-fans/">Meet-the-Fans</a>.
</p>
© 2025
<a href="https://evoluteur.github.io/" target="_blank"
>Olivier Giulieri</a
>
</footer>
</body>
</html>