Skip to content

Commit

Permalink
added links
Browse files Browse the repository at this point in the history
  • Loading branch information
rohan-kulkarni-25 committed Jul 3, 2021
1 parent 9dae1cb commit ca7d530
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion projects.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ fetch('../json/projects.json')
for (let m = 0; m < project[i].Mentors.length; m++) {

let projectdiv = document.createElement('div');
projectdiv.innerHTML = `<div id="projectbox"><div id="name">${project[i].ProjectName}</div><div id="pa">${project[i].ProjectAdmin.Name}</div><div id="mentor">${project[i].Mentors[m].Name}</div></div><hr>`;
projectdiv.innerHTML = `<div id="projectbox"><div id="name"><a href="https://www.github.com/${project[i].Repository}">${project[i].ProjectName}<a></div><div id="pa"><a href="${project[i].ProjectAdmin.GitHub}">${project[i].ProjectAdmin.Name}</a></div><div id="mentor"><a href="${project[i].Mentors[m].GitHub}">${project[i].Mentors[m].Name}</a></div></div><hr>`;



Expand Down

0 comments on commit ca7d530

Please sign in to comment.