From 2dff1819b156b94f5de376736e81934f819704bf Mon Sep 17 00:00:00 2001 From: Chris Swithinbank Date: Tue, 30 May 2023 20:00:21 +0200 Subject: Starter project tweaks --- examples/basics/package.json | 2 +- examples/basics/src/content/docs/index.md | 1 + examples/basics/src/content/i18n/_example.json | 7 ------- 3 files changed, 2 insertions(+), 8 deletions(-) delete mode 100644 examples/basics/src/content/i18n/_example.json diff --git a/examples/basics/package.json b/examples/basics/package.json index cd3fbb7d..d7cff96c 100644 --- a/examples/basics/package.json +++ b/examples/basics/package.json @@ -11,7 +11,7 @@ "astro": "astro" }, "dependencies": { - "@astrojs/starlight": "^0.0.14", + "@astrojs/starlight": "^0.0.15", "astro": "^2.5.0" } } diff --git a/examples/basics/src/content/docs/index.md b/examples/basics/src/content/docs/index.md index 581a1b88..a913d323 100644 --- a/examples/basics/src/content/docs/index.md +++ b/examples/basics/src/content/docs/index.md @@ -1,6 +1,7 @@ --- title: Welcome to Starlight description: Get started building your docs site with Starlight. +template: splash --- Congrats on setting up a new Starlight project! diff --git a/examples/basics/src/content/i18n/_example.json b/examples/basics/src/content/i18n/_example.json deleted file mode 100644 index 8e616128..00000000 --- a/examples/basics/src/content/i18n/_example.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "This file is an example i18n data file": "Learn more at https://starlight.astro.build/guides/i18n/#translate-starlights-ui", - - "skipLink.label": "Skip to content", - "tableOfContents.onThisPage": "On this page", - "tableOfContents.overview": "Overview" -} -- cgit