Skip to content

Commit 5490746

Browse files
committed
(WIP) Skip listing projects that are retired
Signed-off-by: Aditya Sirish <[email protected]>
1 parent 43787c8 commit 5490746

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

projects.html

+6
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,12 @@
1212

1313
<div class="projects">
1414
{% for project in site.data.data.projects.project_cards %}
15+
{% if project.status %}
16+
<!-- FIXME: do we ever not have project status associated? -->
17+
{% if project.status.tag == "retired" %}
18+
{% continue %}
19+
{% endif %}
20+
{% endif %}
1521
<div class="project">
1622
<a class="anchor" name="{{ project.anchor }}"></a>
1723

0 commit comments

Comments
 (0)