Skip to content

Commit d84bc9b

Browse files
committed
Rearrange homepage
1 parent 842ee59 commit d84bc9b

File tree

2 files changed

+12
-17
lines changed

2 files changed

+12
-17
lines changed

src/assets/publications.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,8 @@
9191
"year": 2021,
9292
"month": "Dec",
9393
"note": "Spotlight",
94-
"paper": "https://arxiv.org/abs/2010.02709"
94+
"paper": "https://arxiv.org/abs/2010.02709",
95+
"marked": true
9596
},
9697
{
9798
"type": "conference",
@@ -107,8 +108,7 @@
107108
"venue": "NeurIPS",
108109
"year": 2021,
109110
"paper": "https://arxiv.org/abs/2106.14806",
110-
"code": "https://github.com/aleximmer/Laplace",
111-
"marked": true
111+
"code": "https://github.com/aleximmer/Laplace"
112112
},
113113
{
114114
"type": "conference",

src/pages/index.astro

+9-14
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import { sortPublicationFn } from "@/utils";
1616
import portrait from "../assets/portrait.jpeg";
1717
1818
const interests = [
19-
"Probabilistic Inference",
19+
"Probabilistic ML",
2020
"Foundation Models",
2121
"Decision Making",
2222
"Planning",
@@ -231,10 +231,13 @@ const sortedSelectedPubs = selectedPubs
231231
/>
232232
</Section>
233233

234-
<Section title='Skills'>
235-
<SkillLayout title='Languages' skills={languages} />
236-
<SkillLayout title='Editor Stack' skills={editors} />
237-
</Section>
234+
{
235+
allPostsByDate.length > 0 && (
236+
<Section title='Selected Works'>
237+
<PublicationList publications={sortedSelectedPubs} />
238+
</Section>
239+
)
240+
}
238241

239242
{
240243
allPostsByDate.length > 0 && (
@@ -246,14 +249,6 @@ const sortedSelectedPubs = selectedPubs
246249
</ul>
247250
</Section>
248251
)
249-
}
250-
251-
{
252-
allPostsByDate.length > 0 && (
253-
<Section title='Selected Works'>
254-
<PublicationList publications={sortedSelectedPubs} />
255-
</Section>
256-
)
257-
}
252+
}
258253
</div>
259254
</PageLayout>

0 commit comments

Comments
 (0)