Skip to content

Commit

Permalink
removed ending slash from img tag (#4517)
Browse files Browse the repository at this point in the history
  • Loading branch information
pdimaano authored Apr 19, 2023
1 parent 32e1988 commit 21c549e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions _includes/program-area-pages-cards.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@

{% assign visible_projects = site.projects | where: "program-area", "Citizen Engagement" | where: "visible", "true" %}
{% for item in visible_projects %}
{%- if
{%- if
item.problem.size > 0 and
item.solution.size > 0 and
item.impact.size > 0 and
item.sdg.size > 0 and
item.sdg-image-src.size > 0
-%}
<div class="page-card card-primary page-card-lg program-area" data-dropdown>
<img class="card-image" src="{{ item.image }}" alt=""/>
<img class="card-image" src="{{ item.image }}" alt="">
<div class="mobile-card-info-container">
<div class="mobile-card-nav">
{% assign project_relative_path = item.slug | prepend: "../projects/" %}
Expand Down Expand Up @@ -40,13 +40,13 @@ <h4>Sustainable Development Goal</h4>
</div>
</div>
</div>
{%- else -%}
{%- else -%}
<div class="page-card card-primary page-card-lg missing-area" data-dropdown>
<div class="mobile-card-info-container">
{% assign project_relative_path = item.slug | prepend: "../projects/" %}
<h3><a class="project-card-mini-title" href="{{ project_relative_path }}">{{ item.title }}</a></h3>
<p>We are currently drafting the Problem, Solution and Impact statements for this project.</p>
</div>
</div>
{%- endif -%}
{%- endif -%}
{% endfor %}

0 comments on commit 21c549e

Please sign in to comment.