Skip to content

Commit

Permalink
Added postdocs.
Browse files Browse the repository at this point in the history
  • Loading branch information
amyjko committed Mar 27, 2024
1 parent ba1ede9 commit b9e7755
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/data/People.ts
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,9 @@ export const People: readonly Person[] = [
url: 'https://jeansalac.github.io/',
startdate: 2022,
enddate: null,
achievements: [],
achievements: [
'Assistant Professor, Computer Science, Carlton College, 2024',
],
},
{
id: 'megumi',
Expand Down
15 changes: 15 additions & 0 deletions src/routes/(cv)/cv/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -291,6 +291,21 @@
{/each}
</Wrap>

<h3>Postdoc Supervision</h3>

<Wrap>
{#each $profile.getPeople( (person) => person.level === 'postdoc', (person) => person.startdate ) as person}
<Item
start={person.startdate}
stop={person.enddate}
header={person.name}
two={person.dept}
three={person.coadvisor ?? undefined}
four={person.achievements}
/>
{/each}
</Wrap>

<h3>Doctoral Student Supervision</h3>

<h4>Committee Chair</h4>
Expand Down

0 comments on commit b9e7755

Please sign in to comment.