-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy path+page.svelte
More file actions
47 lines (42 loc) · 1.52 KB
/
+page.svelte
File metadata and controls
47 lines (42 loc) · 1.52 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<script>
import Experience from "$components/Experience.svelte";
import SectionHeader from "$components/SectionHeader.svelte";
import { ListGroup } from "@sveltestrap/sveltestrap";
</script>
<SectionHeader title="Work Experience" />
<ListGroup flush>
<Experience start="April 2022" company="ABC Bio" url="https://google.com">
<ul class="timeline">
<li>
<div class="fw-bold">
Senior Bioinformatics Scientist <span class="fw-normal text-muted small">(Jan 2024 —)</span>
</div>
Led effort to reduce variant calling error rates by 20% in our ABC pipeline ...
</li>
<li>
<div class="fw-bold">
Bioinformatics Scientist <span class="fw-normal text-muted small">(Apr 2022 - Jan 2024)</span>
</div>
Developed variant calling algorithm for new assay ABC...
</li>
</ul>
</Experience>
<Experience start="January 2017" end="March 2022" company="XYZ Bio" url="https://google.com">
<ul class="timeline">
<li>
<div class="fw-bold">Bioinformatics Scientist</div>
Built pipelines for analyzing XYZ...
</li>
</ul>
</Experience>
</ListGroup>
<SectionHeader title="Education" />
<ListGroup flush>
<Experience start="August 2012" end="May 2017" company="Graduate School of Biology" url="https://google.com">
<div class="fw-bold">PhD in Biology</div>
Studied the effect of XYZ...
</Experience>
<Experience start="September 2008" end="August 2012" company="School of Biological Biology" url="https://google.com">
<div class="fw-bold">B.Sc. in Biology</div>
</Experience>
</ListGroup>