1
0
Fork 0
mirror of https://github.com/dilllxd/gitfolio.git synced 2024-08-14 22:28:09 +00:00

made it even better

we got v0.1.1 bois
Changes made :
-added update command
-added emojis 👌🙌👀
-added company and hire thingy in user profile section
-fixed issues and bugs

let's add more features bois v0.1.2 soon
This commit is contained in:
imfunny 2019-05-12 19:14:03 +05:30 committed by GitHub
parent 59b441a6d6
commit e61d0846d6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
10 changed files with 231 additions and 162 deletions

View file

@ -62,25 +62,6 @@
`)
}
});
$.getJSON("./repos/repos.json", function(repos){
for(var i = 0; i < repos.length; i++){
$("#projects").append(`
<a href="${repos[i].html_url}" target="_blank">
<section>
<div class="section_title">${repos[i].name}</div>
<div class="about_section">
${repos[i].description}
</div>
<div class="bottom_section">
<span><i class="fas fa-code"></i>&nbsp; ${repos[i].language}</span>
<span><i class="fas fa-star"></i>&nbsp; ${repos[i].stargazers_count}</span>
<span><i class="fas fa-code-branch"></i>&nbsp; ${repos[i].forks_count}</span>
</div>
</section>
</a>
`)
}
});
</script>
</body>
</html>