slide to the left

This commit is contained in:
2024-02-06 00:00:26 +01:00
parent 951d063db6
commit a9cf294ec4

View File

@@ -12,6 +12,17 @@ const docs = unsortedDocs
title={title} title={title}
description="This is my personal website with my projects, docs and other useful stuff." description="This is my personal website with my projects, docs and other useful stuff."
> >
<div class="sidebar">
<a href={"/docs/" + frontmatter.repo}>Home</a><br />
{
docs.map((page) => (
<>
<a href={page.url}>{page.frontmatter.title}</a>
<br />
</>
))
}
</div>
<div class="content"> <div class="content">
<h1 style="text-align: center;">{frontmatter.title}</h1> <h1 style="text-align: center;">{frontmatter.title}</h1>
<a href={"https://github.com/vaporvee/" + frontmatter.repo} <a href={"https://github.com/vaporvee/" + frontmatter.repo}
@@ -25,15 +36,4 @@ const docs = unsortedDocs
<br /> <br />
<slot /> <slot />
</div> </div>
<div class="sidebar">
<a href={"/docs/" + frontmatter.repo}>Home</a><br />
{
docs.map((page) => (
<>
<a href={page.url}>{page.frontmatter.title}</a>
<br />
</>
))
}
</div>
</Layout> </Layout>