forked from omgenomics/portfolio
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path+page.svelte
More file actions
33 lines (29 loc) · 738 Bytes
/
+page.svelte
File metadata and controls
33 lines (29 loc) · 738 Bytes
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
<script>
import { ListGroup } from "@sveltestrap/sveltestrap";
import Article from "$components/Article.svelte";
import SectionHeader from "$components/SectionHeader.svelte";
</script>
<SectionHeader title="Articles" />
<ListGroup flush>
<Article
title="How to install ABC"
venue="My blog"
date="July 2025"
emoji="🧬"
url="/articles/install-abc"
/>
<Article
title="How to install the bioinformatics tool XYZ on Mac OS"
venue="My blog"
date="June 2024"
emoji="🧑💻"
url="/articles/install-xyz"
/>
<Article
title="Single-cell RNA sequencing of 1 trillion cells reveals much heterogeneity"
date="January 2023"
venue="Nature Science Cell"
emoji="🧬"
url="https://google.com"
/>
</ListGroup>