Skip to content

Commit

Permalink
...
Browse files Browse the repository at this point in the history
  • Loading branch information
garethbilaney committed Sep 23, 2023
1 parent 79c93b4 commit ded9f5f
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
4 changes: 2 additions & 2 deletions src/layouts/BlogLayout.astro
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ const { title, description } = Astro.props;
<Layout title={title} description={description}>
<Container>
<div class="mx-auto max-w-[735px] mt-14">
</div>
<div></div>
</div>

<div class="mx-auto prose prose-lg mt-6">
<slot />
</div>
Expand Down
1 change: 1 addition & 0 deletions src/pages/[lang]/[...slug].astro
Original file line number Diff line number Diff line change
Expand Up @@ -58,4 +58,5 @@ const { Content } = await page.render();
}

<Content/>

</Layout>
4 changes: 2 additions & 2 deletions src/pages/[lang]/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ export const getStaticPaths = () =>
---

<Layout title="Blog">
<div class="bg-white py-24 sm:py-32">
<div class="mx-auto max-w-7xl px-6 lg:px-8">
<div class="bg-[#fef6fa] py-24 sm:py-32">
<div class="mx-auto bg-white rounded-xl p-8 max-w-7xl px-6 lg:px-8">
<div class="mx-auto max-w-2xl lg:mx-0">
<h2 class="text-3xl font-bold tracking-tight text-gray-900 sm:text-4xl">
datanautes Blog
Expand Down
4 changes: 2 additions & 2 deletions src/pages/[lang]/tag/[...slug].astro
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@ const blogEntries = await getCollection("blog", ({ id, data }) => {
---

<Layout title={page.tag[0]} >
<div class="bg-white py-24 sm:py-32">
<div class="mx-auto max-w-7xl px-6 lg:px-8">
<div class="bg-[#fef6fa] py-24 sm:py-32">
<div class="mx-auto bg-white rounded-xl p-8 max-w-7xl px-6 lg:px-8">
<div class="mx-auto max-w-2xl lg:mx-0">
<p class="mt-2 text-lg leading-8 text-gray-600">
{t('tag.posts.tagged')}
Expand Down

0 comments on commit ded9f5f

Please sign in to comment.