Skip to content

Commit

Permalink
small fix
Browse files Browse the repository at this point in the history
  • Loading branch information
dominikgeissler committed May 30, 2024
1 parent ac5e304 commit bad8583
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/routes/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -29,35 +29,35 @@

<section style="white-space: nowrap;">
<div style="background: var(--light-blue);">
<span id="chapterNumber"> 0 </span>
<span id="chapterNumber">{data.chapters.filter((ch) => ch.acceptsSignups).length}</span>
<strong>
<Icon inline icon="ic:place" {style} />
{$microcopy?.indexPage?.boxes?.locationsName}</strong
>
</div>
<div style="background: var(--green);">
<span id="studentNumber"> 0 </span>
<span id="studentNumber">{$microcopy?.indexPage?.boxes?.studentsNumber}</span>
<strong>
<Icon inline icon="fa-solid:user-graduate" {style} />
{$microcopy?.indexPage?.boxes?.studentsName}</strong
>
</div>
<div style="background: var(--orange);">
<span id="pupilNumber"> 0 </span>
<span id="pupilNumber">{$microcopy?.indexPage?.boxes.pupilsNumber}</span>
<strong>
<Icon inline icon="fa-solid:child" {style} />
{$microcopy?.indexPage?.boxes?.pupilsName}</strong
>
</div>
<div style="background: var(--green);">
<span id="scholarshipNumber"> 0 </span>
<span id="scholarshipNumber">{$microcopy?.indexPage?.boxes?.scholarshipNumber}</span>
<strong>
<Icon inline icon="fa-solid:user-graduate" {style} />
{@html $microcopy?.indexPage?.boxes?.scholarshipName}
</strong>
</div>
<div style="background: var(--light-blue);">
<span id="organizationMemberNumber">0</span>
<span id="organizationMemberNumber">{$microcopy?.indexPage?.boxes?.organizationMemberNumber}</span>
<strong>
<Icon inline icon="fa6-solid:user-group" {style} />
{@html $microcopy?.indexPage?.boxes?.organizationMemberName}
Expand Down

0 comments on commit bad8583

Please sign in to comment.