started coding the docs
This commit is contained in:
12
src/layouts/DocsLayout.astro
Normal file
12
src/layouts/DocsLayout.astro
Normal file
@@ -0,0 +1,12 @@
|
||||
---
|
||||
const { frontmatter } = Astro.props;
|
||||
import Layout from "../layouts/Layout.astro";
|
||||
const title = "Docs | " + frontmatter.title;
|
||||
---
|
||||
|
||||
<Layout
|
||||
title={title}
|
||||
description="This is my personal website with my projects, docs and other useful stuff."
|
||||
>
|
||||
<div class="content"><slot /></div>
|
||||
</Layout>
|
Reference in New Issue
Block a user