mirror of
https://github.com/rustdesk/doc.rustdesk.com.git
synced 2026-04-14 11:46:18 +00:00
i18n
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
---
|
||||
import Layout from '~/layouts/Layout.astro';
|
||||
import Header from '~/components/widgets/Header.astro';
|
||||
import Footer, {type Props as FD} from '~/components/widgets/Footer.astro';
|
||||
import Footer, { type Props as FD } from '~/components/widgets/Footer.astro';
|
||||
import Announcement from '~/components/widgets/Announcement.astro';
|
||||
|
||||
import { headerData, footerData } from '~/navigation';
|
||||
@@ -10,22 +10,23 @@ import type { MetaData } from '~/types';
|
||||
|
||||
export interface Props {
|
||||
metadata?: MetaData;
|
||||
i18n?: boolean;
|
||||
}
|
||||
|
||||
const { metadata } = Astro.props;
|
||||
const { metadata, i18n } = Astro.props;
|
||||
---
|
||||
|
||||
<Layout metadata={metadata}>
|
||||
<Layout metadata={metadata} i18n={i18n}>
|
||||
<slot name="announcement">
|
||||
<Announcement />
|
||||
</slot>
|
||||
<slot name="header">
|
||||
<Header {...headerData} isSticky showGithubStar showToggleTheme />
|
||||
<Header {...headerData(Astro.currentLocale)} isSticky showGithubStar showToggleTheme i18n={i18n} />
|
||||
</slot>
|
||||
<main>
|
||||
<slot />
|
||||
</main>
|
||||
<slot name="footer">
|
||||
<Footer {...footerData as FD} />
|
||||
<Footer {...footerData(Astro.currentLocale) as FD} />
|
||||
</slot>
|
||||
</Layout>
|
||||
|
||||
Reference in New Issue
Block a user