2021-08-02 06:38:50 +00:00
|
|
|
export const SIDEBAR = {
|
2021-08-02 06:40:02 +00:00
|
|
|
en: [
|
2021-08-02 06:38:50 +00:00
|
|
|
{ text: 'Setup', header: true },
|
|
|
|
{ text: 'Getting Started', link: 'getting-started' },
|
|
|
|
{ text: 'Quickstart', link: 'quick-start' },
|
|
|
|
{ text: 'Installation', link: 'installation' },
|
|
|
|
{ text: 'Examples', link: 'examples' },
|
|
|
|
{ text: 'Astro vs. X', link: 'comparing-astro-vs-other-tools' },
|
2021-08-02 06:40:02 +00:00
|
|
|
|
2021-08-02 06:38:50 +00:00
|
|
|
{ text: 'Basics', header: true },
|
|
|
|
{ text: 'Project Structure', link: 'core-concepts/project-structure' },
|
2021-08-13 18:28:11 +00:00
|
|
|
{ text: 'Component Syntax', link: 'core-concepts/astro-components' },
|
2021-08-02 06:38:50 +00:00
|
|
|
{ text: 'Pages', link: 'core-concepts/astro-pages' },
|
|
|
|
{ text: 'Layouts', link: 'core-concepts/layouts' },
|
2021-08-11 22:04:09 +00:00
|
|
|
{ text: 'Routing', link: 'core-concepts/routing' },
|
2021-08-02 06:38:50 +00:00
|
|
|
{ text: 'Partial Hydration', link: 'core-concepts/component-hydration' },
|
2021-08-02 06:40:02 +00:00
|
|
|
|
2021-08-02 06:38:50 +00:00
|
|
|
{ text: 'Guides', header: true },
|
|
|
|
{ text: 'Styling & CSS', link: 'guides/styling' },
|
|
|
|
{ text: 'Markdown', link: 'guides/markdown-content' },
|
2021-08-23 20:43:22 +00:00
|
|
|
{ text: 'Debugging', link: 'guides/debugging' },
|
2021-08-11 22:04:09 +00:00
|
|
|
{ text: 'Data Fetching', link: 'guides/data-fetching' },
|
|
|
|
{ text: 'Pagination', link: 'guides/pagination' },
|
|
|
|
{ text: 'RSS', link: 'guides/rss' },
|
2021-08-02 06:38:50 +00:00
|
|
|
{ text: 'Supported Imports', link: 'guides/imports' },
|
2021-08-06 20:46:09 +00:00
|
|
|
{ text: 'Aliases', link: 'guides/aliases' },
|
2021-08-02 06:38:50 +00:00
|
|
|
{ text: 'Deploy a Website', link: 'guides/deploy' },
|
|
|
|
{ text: 'Publish a Component', link: 'guides/publish-to-npm' },
|
2021-08-02 06:40:02 +00:00
|
|
|
|
2021-08-02 06:38:50 +00:00
|
|
|
{ text: 'Reference', header: true },
|
|
|
|
{ text: 'Built-In Components', link: 'reference/builtin-components' },
|
|
|
|
{ text: 'API Reference', link: 'reference/api-reference' },
|
|
|
|
{ text: 'CLI Reference', link: 'reference/cli-reference' },
|
|
|
|
{
|
|
|
|
text: 'Configuration Reference',
|
|
|
|
link: 'reference/configuration-reference',
|
|
|
|
},
|
|
|
|
{ text: 'Renderer Reference', link: 'reference/renderer-reference' },
|
|
|
|
],
|
2021-08-04 18:04:33 +00:00
|
|
|
de: [
|
|
|
|
{ text: 'Willkommen', header: true },
|
|
|
|
{ text: 'Einführung', link: 'de/getting-started' },
|
|
|
|
],
|
2021-08-02 06:40:02 +00:00
|
|
|
nl: [
|
2021-08-02 06:38:50 +00:00
|
|
|
{ text: 'Welkom', header: true },
|
|
|
|
{ text: 'Beginnen', link: 'nl/getting-started' },
|
|
|
|
],
|
2021-08-02 06:40:02 +00:00
|
|
|
fi: [
|
2021-08-02 06:38:50 +00:00
|
|
|
{ text: 'Tervetuloa', header: true },
|
|
|
|
{ text: 'Aloittaminen', link: 'fi/getting-started' },
|
|
|
|
{ text: 'Pika-aloitus', link: 'fi/quick-start' },
|
|
|
|
{ text: 'Asennus', link: 'fi/installation' },
|
|
|
|
],
|
2021-08-04 18:06:19 +00:00
|
|
|
es: [
|
|
|
|
{ text: 'Configuración', header: true },
|
|
|
|
{ text: 'Empezando', link: 'es/getting-started' },
|
|
|
|
],
|
2021-08-04 16:05:00 +00:00
|
|
|
'zh-CN': [
|
|
|
|
{ text: '起步', header: true },
|
|
|
|
{ text: '入门指南', link: 'zh-CN/getting-started' },
|
|
|
|
{ text: '快速入门', link: 'zh-CN/quick-start' },
|
|
|
|
{ text: '安装指南', link: 'zh-CN/installation' },
|
|
|
|
{ text: '模板样例', link: 'zh-CN/examples' },
|
2021-08-30 21:21:04 +00:00
|
|
|
{
|
|
|
|
text: 'Astro 对比其他框架',
|
|
|
|
link: 'zh-CN/comparing-astro-vs-other-tools',
|
|
|
|
},
|
2021-08-04 16:05:00 +00:00
|
|
|
],
|
|
|
|
'zh-TW': [
|
2021-08-06 05:33:55 +00:00
|
|
|
{ text: '設定', header: true },
|
|
|
|
{ text: '新手上路', link: 'zh-TW/getting-started' },
|
|
|
|
{ text: '快速開始', link: 'zh-TW/quick-start' },
|
|
|
|
{ text: '安裝', link: 'zh-TW/installation' },
|
|
|
|
{ text: '範例', link: 'zh-TW/examples' },
|
2021-08-04 16:05:00 +00:00
|
|
|
],
|
2021-08-06 05:51:07 +00:00
|
|
|
bg: [
|
|
|
|
{ text: 'Главни', header: true },
|
2021-08-06 05:52:13 +00:00
|
|
|
{ text: 'Започваме!', link: 'bg/getting-started' },
|
|
|
|
],
|
2021-08-06 18:20:36 +00:00
|
|
|
fr: [
|
|
|
|
{ text: 'Bienvenue', header: true },
|
2021-08-17 05:01:02 +00:00
|
|
|
{ text: 'Bien démarrer', link: 'fr/getting-started' },
|
|
|
|
{ text: 'Démarrage rapide', link: 'fr/quick-start' },
|
|
|
|
{ text: 'Installation', link: 'fr/installation' },
|
2021-08-06 18:20:36 +00:00
|
|
|
],
|
2021-08-26 04:44:26 +00:00
|
|
|
bn: [
|
|
|
|
{ text: 'সেটআপ', header: true },
|
|
|
|
{ text: 'শুরু করুন', link: 'bn/getting-started' },
|
|
|
|
],
|
2021-08-24 05:31:24 +00:00
|
|
|
kr: [
|
|
|
|
{ text: '환영합니다', header: true },
|
2021-08-24 05:32:44 +00:00
|
|
|
{ text: '시작하기', link: 'kr/getting-started' },
|
2021-08-24 05:31:24 +00:00
|
|
|
],
|
2021-08-25 16:11:29 +00:00
|
|
|
ar: [
|
|
|
|
{ text: 'التهيئة', header: true },
|
|
|
|
{ text: 'باشر البدأ', link: 'ar/getting-started' },
|
2021-08-25 16:12:44 +00:00
|
|
|
],
|
2021-08-27 20:01:06 +00:00
|
|
|
da: [
|
|
|
|
{ text: 'Velkommen', header: true },
|
|
|
|
{ text: 'Introduktion', link: 'da/getting-started' },
|
|
|
|
],
|
2021-08-02 06:40:02 +00:00
|
|
|
};
|
2021-07-20 20:56:20 +00:00
|
|
|
|
2021-07-31 05:39:15 +00:00
|
|
|
export const SITE = {
|
2021-07-20 20:56:20 +00:00
|
|
|
title: 'Astro Documentation',
|
2021-07-21 14:44:15 +00:00
|
|
|
description: 'Build faster websites with less client-side Javascript.',
|
2021-07-31 05:41:22 +00:00
|
|
|
};
|
2021-07-31 05:39:15 +00:00
|
|
|
|
|
|
|
export const OPEN_GRAPH = {
|
|
|
|
locale: 'en_US',
|
2021-07-21 02:52:26 +00:00
|
|
|
image: {
|
|
|
|
src: '/default-og-image.png?v=1',
|
|
|
|
alt:
|
|
|
|
'astro logo on a starry expanse of space,' +
|
|
|
|
' with a purple saturn-like planet floating in the right foreground',
|
|
|
|
},
|
2021-07-31 05:39:15 +00:00
|
|
|
twitter: 'astrodotbuild',
|
2021-07-20 20:56:20 +00:00
|
|
|
};
|