Skip to content

Commit

Permalink
Add separators to links section (#1444) (#1486)
Browse files Browse the repository at this point in the history
* Added separators to the project links

* Merge branch 'gh-pages' of https://github.com/hackforla/website into gh-pages

* Testing separator

* Changed separator to comma

* Added separators to Looking For and Technologies
  • Loading branch information
DGnzl authored Apr 29, 2021
1 parent a2feb7c commit ee4817b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions _includes/current-projects.html
Original file line number Diff line number Diff line change
Expand Up @@ -421,7 +421,7 @@ <h5 class='status-text'>${ project.status }</h5>
<div class="project-links">
<strong>Links: </strong>
${project.links.map(item => `<a href=${ item.url } rel="noopener" target='_blank'> ${ item.name }</a>`).join("")}
${project.links.map(item => `<a href=${ item.url } rel="noopener" target='_blank'> ${ item.name }</a>`).join(", ")}
</div>
${project.partner ?
Expand All @@ -437,7 +437,7 @@ <h5 class='status-text'>${ project.status }</h5>
`
<div class="project-needs">
<strong>Looking for: </strong>
${project.looking.map( role => `<p class='project-card-field-inline'> ${ role.skill }</p>`).join("")}
${project.looking.map( role => `<p class='project-card-field-inline'> ${ role.skill }</p>`).join(", ")}
</div>
`:""
}
Expand All @@ -455,7 +455,7 @@ <h5 class='status-text'>${ project.status }</h5>
`
<div class="project-technologies">
<strong>Technologies: </strong>
${project.technologies.map(tech => `<p class='project-card-field-inline'> ${ tech }</p>`).join("")}
${project.technologies.map(tech => `<p class='project-card-field-inline'> ${ tech }</p>`).join(", ")}
</div>
`:""
}
Expand Down

0 comments on commit ee4817b

Please sign in to comment.