* CMS fetching on main page * Getting council members * Image loading for council member * Placeholder avatar
34 lines
834 B
Svelte
34 lines
834 B
Svelte
<script>
|
|
import CouncilCard from 'components/CouncilCard.svelte';
|
|
import Section from 'components/Section.svelte';
|
|
let { data } = $props();
|
|
</script>
|
|
|
|
<title> ECSESS council </title>
|
|
<Section>
|
|
<p class="page-title">Meet the council!</p>
|
|
|
|
<p>Group picture!</p>
|
|
<div class="flex flex-row flex-wrap items-center align-middle gap-10 p-4">
|
|
{#each data.members as councilMember}
|
|
<CouncilCard
|
|
name={councilMember.name}
|
|
position={councilMember.position}
|
|
email={councilMember.email}
|
|
positionDescription={councilMember.positionDescription}
|
|
yearProgram={councilMember.yearProgram}
|
|
image={councilMember.image}
|
|
></CouncilCard>
|
|
{/each}
|
|
</div>
|
|
|
|
<p>Here are the members of the ECSESS council!</p>
|
|
<div>
|
|
<h2>President</h2>
|
|
<p>Name:</p>
|
|
<p>Email:</p>
|
|
<p>Year:</p>
|
|
<p>Program:</p>
|
|
</div>
|
|
</Section>
|