This repository has been archived by the owner on Jun 19, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathdata.js
186 lines (158 loc) · 5.5 KB
/
data.js
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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
const projectData = [
{
teamName: "SOA Code Room",
//give the username and repository name where you have posted your project
username: "soacoderoom",
reponame: "Summer-Hacks",
},
{
teamName: "Swapnil Chand",
//give the username and repository name where you have posted your project
username: "SwapnilChand",
reponame: "summerhacks-SwapnilChand",
},
{
teamName: "Urjaswi",
//give the username and repository name where you have posted your project
username: "Urjaswi-2655",
reponame: "summerhacks-Urjaswi",
},
{
teamName: "ARMAN ALI KHAN",
//give the username and repository name where you have posted your project
username: "Arman-ali-khan-786",
reponame: "summerhacks-knowArman",
},
{
teamName: "BugBusters",
//give the username and repository name where you have posted your project
username: "apschauhan210",
reponame: "summerhack-Technocrats",
},
{
teamName: "summerhacks-TeamBruteforce",
//give the username and repository name where you have posted your project
username: "arpanaditya",
reponame: "summerhacks-Team-Bruteforce",
},
{
teamName: "Nuubs4",
//give the username and repository name where you have posted your project
username: "Jyo561",
reponame: "summerhacks-Portfolio360",
},
{
teamName: "Team Shailesh_Vinit",
//give the username and repository name where you have posted your project
username: "vinitvins",
reponame: "summerhacks-myPortfolioMusk",
},
{
teamName: "Exotic",
//give the username and repository name where you have posted your project
username: "iamsahebgiri",
reponame: "summerhacks-exotic",
},
{
teamName: "Alik Kumar Ghosh",
username: "Alik-Kumar-Ghosh",
reponame: "SummerHacks_Portfolio",
},
{
teamName: "Poushali Chakraborty",
//give the username and repository name where you have posted your project
username: "poushali07",
reponame: "SummerHacks_Poushali",
},
{
teamName: "WeOne",
//give the username and repository name where you have posted your project
username: "Abhijeet-Anand-01",
reponame: "summerhacks-WeOne",
},
{
teamName: "Siddhant Sarthak",
//give the username and repository name where you have posted your project
username: "sid-mr-im",
reponame: "summerhacks-siddhantsarthak",
},
{
teamName: "ZCoders",
//give the username and repository name where you have posted your project
username: "Vishal409",
reponame: "SummerHacks-ZCoders",
},
{
teamName: "Farid Ahmed",
//give the username and repository name where you have posted your project
username: "fareedahmed00",
reponame: "summerhacks-FaridAhmed",
},
{
teamName: "Amrit Nayak",
//give the username and repository name where you have posted your project
username: "AmritNayak",
reponame: "summerhacks-myPortfolioSite",
},
{
teamName: "Nishant's site",
//give the username and repository name where you have posted your project
username: "Nishant50",
reponame: "summerhacks-myPortfolio",
},
{
teamName: "PLAY_WITH_BITS",
//give the username and repository name where you have posted your project
username: "sambitraj",
reponame: "portfolio-website",
},
{
teamName: "ExcessiveMedia",
//give the username and repository name where you have posted your project
username: "sanskar85",
reponame: "summerhacks-excessiveMedia",
},
{
teamName: "OrangeDawn",
username: "Aditi-Trishna",
reponame: "summerhacks-OrangeDawn",
},
{
teamName: "coding comrades",
//give the username and repository name where you have posted your project
username: "RohanHarichandan",
reponame: "Summer-Hacks",
},
{
teamName: "Sachin Pandey",
//give the username and repository name where you have posted your project
username: "skpandey885",
reponame: "summerhacks-sachinPortfolio",
},
{
teamName: "Sushant",
//give the username and repository name where you have posted your project
username: "Sushant258",
reponame: "summerhacks-myPortfolio",
},
];
//------------------------WARNING---------------------------//
//---------------------------------------------------------//
//DON'T CHANGE AFTER THIS LINE
//---------------------------------------------------------//
function projectTemplate(project) {
return `
<div class="project">
<img class="project-photo" src="https://github-readme-stats.vercel.app/api/pin/?username=${project.username}&repo=${project.reponame}&theme=highcontrast&show_icons=true&layout=compact">
<a href="https://github.com/${project.username}/${project.reponame}"><h2 class="project-name">${project.reponame}</h2></a>
<span class="team-name">(${project.teamName})</span>
<img class="project-commit" src="https://img.shields.io/github/last-commit/${project.username}/${project.reponame}?style=for-the-badge">
<img class="project-star" src="https://img.shields.io/github/stars/${project.username}/${project.reponame}?style=social">
</div>
`;
}
document.getElementById("app").innerHTML = `
<h1 class="app-title">(${projectData.length} projects found)</h1>
${projectData.map(projectTemplate).join("")}
<p class="projects">These ${projectData.length} projects were added recently. Check back soon for updates.</p>
`;