Skip to content

Commit

Permalink
test remove member pages
Browse files Browse the repository at this point in the history
  • Loading branch information
WilliamDiakite committed Oct 18, 2023
1 parent 16a29d0 commit f824743
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/routes/[about=about]/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -31,29 +31,29 @@
<ul class="team">
{#each dir as m}
<li>
<a href={`${$t('route.about.member')}/${m.meta.slug}`}>
<!-- <a href={`${$t('route.about.member')}/${m.meta.slug}`}>
<TeamCard bind:data={m} />
</a>
</a> -->
</li>
{/each}
</ul>
<h3>{$t('about.team.coord')}</h3>
<ul class="team">
{#each coord as m}
<li>
<a href={`${$t('route.about.member')}/${m.meta.slug}`}>
<!-- <a href={`${$t('route.about.member')}/${m.meta.slug}`}>
<TeamCard bind:data={m} />
</a>
</a> -->
</li>
{/each}
</ul>
<h3>{$t('about.team.members')}</h3>
<ul class="team">
{#each members as m}
<li>
<a href={`${$t('route.about.member')}/${m.meta.slug}`}>
<!-- <a href={`${$t('route.about.member')}/${m.meta.slug}`}>
<TeamCard bind:data={m} />
</a>
</a> -->
</li>
{/each}
</ul>
Expand Down

0 comments on commit f824743

Please sign in to comment.