Skip to content

Commit

Permalink
Only show started projects
Browse files Browse the repository at this point in the history
  • Loading branch information
s7uck authored Jul 20, 2024
1 parent 7ad10a4 commit 499c52f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions showcase.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ permalink: /showcase

{% assign projects = site.projects | sort: "priority" | reverse %}

<ol class="grid" id="showcase-grid">{% for project in projects %}
<ol class="grid" id="showcase-grid">{% for project in projects %}{% if project.started != false %}
<li class="card{% if project.highlight %} big{%endif%}" style="background-image: url({{ project.image }})">
<figcaption>
<span>
Expand All @@ -39,5 +39,5 @@ permalink: /showcase
</span>
<menu><a href="{{ project.url }}" title="Link"><img class="invert" src="/images/forward.svg"></a></menu>
</figcaption>
</li>{% endfor %}
</li>{% endif %}{% endfor %}
</ol>

0 comments on commit 499c52f

Please sign in to comment.