Skip to content

Commit

Permalink
it's a dirty hack but it works for now…
Browse files Browse the repository at this point in the history
  • Loading branch information
chantastic committed Mar 29, 2024
1 parent aa5da50 commit e3c4de7
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 14 deletions.
28 changes: 14 additions & 14 deletions chan.dev/src/layouts/MarkdownLayout.astro
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
---
import Layout from "#layouts/Layout.astro";
import PostMeta from "#components/header-post-meta.astro";
import Prose from "#components/prose.astro";
import * as SITE from "#modules/site";
import Layout from '#layouts/Layout.astro'
import PostMeta from '#components/header-post-meta.astro'
import Prose from '#components/prose.astro'
import * as SITE from '#modules/site'
const { title, description } = Astro.props;
const {title, description} = Astro.props
---

<Layout>
<Prose as="main">
<slot />
</Prose>
<PostMeta
slot="page-meta"
title={`chantastic styleguide: ${title}`}
description={description}
path={SITE.url()}
/>
<Prose as="main">
<slot />
</Prose>
<PostMeta
slot="page-meta"
title={`Michael Chan for Netflix Web UI Engineer (L5) - Games UI`}
description={`Video cover for Michael Chan's application to Netflix.`}
path={SITE.url()}
/>
</Layout>
2 changes: 2 additions & 0 deletions chan.dev/src/pages/netflix/index.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
---
layout: '../../layouts/MarkdownLayout.astro'
title: Michael Chan for Netflix Web UI Engineer (L5) - Games UI
description: Video cover for Michael Chan's application to Netflix.
---

<h1>Hi Netflix Games UI Team 🎮</h1>
Expand Down

0 comments on commit e3c4de7

Please sign in to comment.