mirror of
https://github.com/eliasstepanik/strudel-docker.git
synced 2026-01-14 15:18:33 +00:00
21 lines
636 B
Plaintext
21 lines
636 B
Plaintext
---
|
|
import TableOfContents from './TableOfContents';
|
|
import MoreMenu from './MoreMenu.astro';
|
|
import type { MarkdownHeading } from 'astro';
|
|
|
|
type Props = {
|
|
headings: MarkdownHeading[];
|
|
githubEditUrl: string;
|
|
};
|
|
|
|
const { headings, githubEditUrl } = Astro.props as Props;
|
|
let currentPage = Astro.url.pathname;
|
|
// remove slash before #
|
|
currentPage = currentPage.endsWith('/') ? currentPage.slice(0, -1) : currentPage;
|
|
---
|
|
|
|
<nav aria-labelledby="grid-right" class="w-64 text-foreground">
|
|
<TableOfContents client:media="(min-width: 50em)" headings={headings} currentPage={currentPage} />
|
|
<MoreMenu editHref={githubEditUrl} />
|
|
</nav>
|