Skip to content

Commit

Permalink
Move website-nanostores-multiple-ep to default layout
Browse files Browse the repository at this point in the history
  • Loading branch information
tatarianBarbarian committed Sep 19, 2023
1 parent a947e3c commit c9a7dc5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 17 deletions.
3 changes: 0 additions & 3 deletions test/website-nanostores-multiple-ep/astro.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,6 @@ const astroTypedoc = await initAstroTypedoc({
const project = await astroTypedoc.getReflections()

await astroTypedoc.generateDocs({
frontmatter: {
layout: resolve(__dirname, './src/layouts/DocLayout.astro')
},
outputFolder: 'src/pages/docs',
project
})
Expand Down
19 changes: 5 additions & 14 deletions test/website-nanostores-multiple-ep/src/pages/index.astro
Original file line number Diff line number Diff line change
@@ -1,17 +1,8 @@
---
import Sidebar from '../components/Sidebar.astro'
import Layout from '../../../../ui/components/Layout.astro'
---

<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<meta name="viewport" content="width=device-width" />
<meta name="generator" content={Astro.generator} />
<title>Astro</title>
</head>
<body>
<h1>Nanostores</h1>
<Sidebar />
</body>
</html>
<Layout>
<h1>Nanostores + Router demo</h1>
<p>This is website-nanostores-multiple-ep demo site</p>
</Layout>

0 comments on commit c9a7dc5

Please sign in to comment.