Skip to content

Commit

Permalink
Change deadlyarchive link
Browse files Browse the repository at this point in the history
  • Loading branch information
ednunezg committed Nov 12, 2024
1 parent 9469b57 commit 0da1590
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
3 changes: 2 additions & 1 deletion projects.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ var projects_json = [
"info": "Building an interactive Grateful Dead show database, visual archive. Meant to be an interactive tool for discovering shows adored by GD fans. If this is interesting to you, reach out !",

"links":{
"main":"https://deadlyarchive.com"
"main":"https://deadlyarchive.com",
"moreinfo":"https://www.reddit.com/r/gratefuldead/comments/1gmxt06/browse_shows_by_specific_song_rank_shows_by/"
},

"tags":["Python", "Flask", "React", "PostgreSQL", "TypeScript"]
Expand Down
4 changes: 4 additions & 0 deletions projects.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,10 @@ order: 1
linksDiv.innerHTML += '<a href='+projects[i].links.moreinfo+'><i class="fa fa-info-circle"></i> More info</a><br>';
}

if(projects[i].links.reddit != null){
linksDiv.innerHTML += '<a href='+projects[i].links.reddit+'><i class="fa fa-reddit"></i> Reddit Announcement</a><br>';
}

if(projects[i].links.landingpage != null){
linksDiv.innerHTML += '<a href='+projects[i].links.landingpage+'><i class="fa fa-external-link"></i> Landing page</a><br>';
}
Expand Down

0 comments on commit 0da1590

Please sign in to comment.