Skip to content
This repository has been archived by the owner on Jun 14, 2023. It is now read-only.

Commit

Permalink
add list of project with source
Browse files Browse the repository at this point in the history
  • Loading branch information
jabdoa2 committed May 19, 2020
1 parent 52e1cd1 commit 9b09a81
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions projects.html
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,21 @@ <h2>Finished projects</h2>
{% endfor %}
</ul>

<h2>Projects with Source Code Link</h2>
<ul>
{% assign projects_by_start = site.projects | sort: 'started' %}
{% for project in projects_by_start %}
{% if project.code_link %}
<li><a href="{{ project.url | prepend: site.baseurl }}">{{ project.name }}
{% if project.acronym %}
({{ project.acronym }})
{% endif %}
</a> by {{ project.team }} (started: {{ project.started | date_to_string }}) - <a href="{{ project.code_link }}">Code Link</a></li>
{% endif %}
{% endfor %}
</ul>


<h2>Hardware platforms in Use</h2>
{% assign platforms = site.hardware_platforms | sort: 'name' %}
<ul>
Expand Down

0 comments on commit 9b09a81

Please sign in to comment.