Skip to content

Commit 7882c4a

Browse files
committed
Update header
1 parent d7a30c0 commit 7882c4a

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

.astro/types.d.ts

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -192,13 +192,13 @@ declare module 'astro:content' {
192192
collection: "post";
193193
data: InferEntrySchema<"post">
194194
} & { render(): Render[".mdx"] };
195-
"conditional-vae.md": {
196-
id: "conditional-vae.md";
195+
"conditional-vae.mdx": {
196+
id: "conditional-vae.mdx";
197197
slug: "conditional-vae";
198198
body: string;
199199
collection: "post";
200200
data: InferEntrySchema<"post">
201-
} & { render(): Render[".md"] };
201+
} & { render(): Render[".mdx"] };
202202
"contractive-autoencoder.md": {
203203
id: "contractive-autoencoder.md";
204204
slug: "contractive-autoencoder";
@@ -262,13 +262,13 @@ declare module 'astro:content' {
262262
collection: "post";
263263
data: InferEntrySchema<"post">
264264
} & { render(): Render[".mdx"] };
265-
"forward-reverse-kl.md": {
266-
id: "forward-reverse-kl.md";
265+
"forward-reverse-kl.mdx": {
266+
id: "forward-reverse-kl.mdx";
267267
slug: "forward-reverse-kl";
268268
body: string;
269269
collection: "post";
270270
data: InferEntrySchema<"post">
271-
} & { render(): Render[".md"] };
271+
} & { render(): Render[".mdx"] };
272272
"gan-pytorch.mdx": {
273273
id: "gan-pytorch.mdx";
274274
slug: "gan-pytorch";
@@ -507,13 +507,13 @@ declare module 'astro:content' {
507507
collection: "post";
508508
data: InferEntrySchema<"post">
509509
} & { render(): Render[".mdx"] };
510-
"variational-autoencoder.md": {
511-
id: "variational-autoencoder.md";
510+
"variational-autoencoder.mdx": {
511+
id: "variational-autoencoder.mdx";
512512
slug: "variational-autoencoder";
513513
body: string;
514514
collection: "post";
515515
data: InferEntrySchema<"post">
516-
} & { render(): Render[".md"] };
516+
} & { render(): Render[".mdx"] };
517517
"volume-form.mdx": {
518518
id: "volume-form.mdx";
519519
slug: "volume-form";

src/components/BaseHead.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ type Props = SiteMeta;
1010
1111
const { articleDate, description, ogImage, title } = Astro.props;
1212
13-
const titleSeparator = "";
13+
const titleSeparator = "-";
1414
const siteTitle = `${title} ${titleSeparator} ${siteConfig.title}`;
1515
const canonicalURL = new URL(Astro.url.pathname, Astro.site);
1616
const socialImageURL = new URL(ogImage ? ogImage : "/social-card.png", Astro.url).href;

src/pages/index.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ const sortedSelectedPubs = selectedPubs
3737
.sort(sortPublicationFn);
3838
---
3939

40-
<PageLayout meta={{ title: "Home" }}>
40+
<PageLayout meta={{ title: "About" }}>
4141
<div class='flex w-full flex-col gap-y-10'>
4242
<section class='flex flex-col items-center gap-y-7'>
4343
<Image

0 commit comments

Comments
 (0)