├── .gitignore ├── .prettierrc.mjs ├── .vscode ├── extensions.json ├── launch.json └── settings.json ├── LICENSE ├── README.md ├── astro.config.mjs ├── package.json ├── pnpm-lock.yaml ├── public ├── blog-placeholder-1.jpg ├── blog-placeholder-2.jpg ├── blog-placeholder-3.jpg ├── blog-placeholder-4.jpg ├── blog-placeholder-5.jpg ├── blog-placeholder-about.jpg ├── favicon.svg └── fonts │ ├── atkinson-bold.woff │ └── atkinson-regular.woff ├── screenshots.png ├── src ├── assets │ └── app.css ├── components │ ├── BaseHead.astro │ ├── CommonCard.astro │ ├── Footer.astro │ ├── FormattedDate.astro │ ├── Header.astro │ ├── HeroCard.astro │ ├── Links.astro │ ├── OptimizedPicture.astro │ ├── Pagination.astro │ └── RelatedPostsCard.astro ├── consts.ts ├── content │ ├── config.ts │ └── posts │ │ ├── assets-guides-fonts.md │ │ ├── assets-guides-images.md │ │ ├── assets-guides-media.md │ │ ├── assets-guides-styling.md │ │ ├── astro-api-reference-reference-api-reference.md │ │ ├── astro-api-reference-reference-modules-astro-actions.md │ │ ├── astro-api-reference-reference-modules-astro-assets.md │ │ ├── astro-api-reference-reference-modules-astro-content.md │ │ ├── astro-api-reference-reference-modules-astro-i18n.md │ │ ├── astro-api-reference-reference-modules-astro-middleware.md │ │ ├── astro-api-reference-reference-modules-astro-transitions.md │ │ ├── client-side-interactivity-guides-client-side-scripts.md │ │ ├── client-side-interactivity-guides-framework-components.md │ │ ├── community-resources-community-resources-content.md │ │ ├── community-resources-community-resources-talks.md │ │ ├── connect-your-data-guides-astro-db.md │ │ ├── connect-your-data-guides-authentication.md │ │ ├── connect-your-data-guides-backend.md │ │ ├── connect-your-data-guides-data-fetching.md │ │ ├── connect-your-data-guides-ecommerce.md │ │ ├── connect-your-data-guides-environment-variables.md │ │ ├── core-concepts-concepts-islands.md │ │ ├── core-concepts-concepts-why-astro.md │ │ ├── learn-the-basics-basics-astro-components.md │ │ ├── learn-the-basics-basics-astro-pages.md │ │ ├── learn-the-basics-basics-astro-syntax.md │ │ ├── learn-the-basics-basics-layouts.md │ │ ├── learn-the-basics-basics-project-structure.md │ │ ├── learn-the-basics-basics-rendering-modes.md │ │ ├── learn-the-basics-guides-imports.md │ │ ├── learn-the-basics-guides-integrations-guide.md │ │ ├── maintain-your-project-guides-testing.md │ │ ├── maintain-your-project-guides-troubleshooting.md │ │ ├── maintain-your-project-upgrade-astro.md │ │ ├── manage-your-content-guides-cms.md │ │ ├── manage-your-content-guides-content-collections.md │ │ ├── manage-your-content-guides-content.md │ │ ├── manage-your-content-guides-markdown-content.md │ │ ├── manage-your-content-guides-rss.md │ │ ├── other-development-apis-reference-adapter-reference.md │ │ ├── other-development-apis-reference-container-reference.md │ │ ├── other-development-apis-reference-dev-toolbar-app-reference.md │ │ ├── other-development-apis-reference-image-service-reference.md │ │ ├── other-development-apis-reference-integrations-reference.md │ │ ├── reference-guides-typescript.md │ │ ├── reference-reference-cli-reference.md │ │ ├── reference-reference-components-reference.md │ │ ├── reference-reference-configuration-reference.md │ │ ├── reference-reference-directives-reference.md │ │ ├── reference-reference-error-reference.md │ │ ├── routes-and-navigation-guides-actions.md │ │ ├── routes-and-navigation-guides-endpoints.md │ │ ├── routes-and-navigation-guides-internationalization.md │ │ ├── routes-and-navigation-guides-middleware.md │ │ ├── routes-and-navigation-guides-prefetch.md │ │ ├── routes-and-navigation-guides-routing.md │ │ ├── routes-and-navigation-guides-view-transitions.md │ │ ├── welcome-world-getting-started.md │ │ ├── welcome-world-guides-deploy.md │ │ ├── welcome-world-guides-migrate-to-astro.md │ │ ├── welcome-world-install-and-setup.md │ │ └── welcome-world-tutorial-0-introduction.md ├── env.d.ts ├── layouts │ └── BaseLayout.astro ├── pages │ ├── 404.astro │ ├── category │ │ └── [category] │ │ │ └── [page].astro │ ├── index.astro │ ├── page │ │ └── [page].astro │ ├── posts │ │ └── [...slug].astro │ ├── robots.txt.ts │ ├── rss.xml.js │ ├── search.astro │ └── tags │ │ ├── [tag] │ │ └── [page].astro │ │ └── index.astro └── utils │ └── remark-modified-time.mjs └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouranoshong/astro-melody-starter/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouranoshong/astro-melody-starter/HEAD/.prettierrc.mjs -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouranoshong/astro-melody-starter/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouranoshong/astro-melody-starter/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouranoshong/astro-melody-starter/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouranoshong/astro-melody-starter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouranoshong/astro-melody-starter/HEAD/README.md -------------------------------------------------------------------------------- /astro.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouranoshong/astro-melody-starter/HEAD/astro.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouranoshong/astro-melody-starter/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouranoshong/astro-melody-starter/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /public/blog-placeholder-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouranoshong/astro-melody-starter/HEAD/public/blog-placeholder-1.jpg -------------------------------------------------------------------------------- /public/blog-placeholder-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouranoshong/astro-melody-starter/HEAD/public/blog-placeholder-2.jpg -------------------------------------------------------------------------------- /public/blog-placeholder-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouranoshong/astro-melody-starter/HEAD/public/blog-placeholder-3.jpg -------------------------------------------------------------------------------- /public/blog-placeholder-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouranoshong/astro-melody-starter/HEAD/public/blog-placeholder-4.jpg -------------------------------------------------------------------------------- /public/blog-placeholder-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouranoshong/astro-melody-starter/HEAD/public/blog-placeholder-5.jpg -------------------------------------------------------------------------------- /public/blog-placeholder-about.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouranoshong/astro-melody-starter/HEAD/public/blog-placeholder-about.jpg -------------------------------------------------------------------------------- /public/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouranoshong/astro-melody-starter/HEAD/public/favicon.svg -------------------------------------------------------------------------------- /public/fonts/atkinson-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouranoshong/astro-melody-starter/HEAD/public/fonts/atkinson-bold.woff -------------------------------------------------------------------------------- /public/fonts/atkinson-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouranoshong/astro-melody-starter/HEAD/public/fonts/atkinson-regular.woff -------------------------------------------------------------------------------- /screenshots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouranoshong/astro-melody-starter/HEAD/screenshots.png -------------------------------------------------------------------------------- /src/assets/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouranoshong/astro-melody-starter/HEAD/src/assets/app.css -------------------------------------------------------------------------------- /src/components/BaseHead.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouranoshong/astro-melody-starter/HEAD/src/components/BaseHead.astro -------------------------------------------------------------------------------- /src/components/CommonCard.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouranoshong/astro-melody-starter/HEAD/src/components/CommonCard.astro -------------------------------------------------------------------------------- /src/components/Footer.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouranoshong/astro-melody-starter/HEAD/src/components/Footer.astro -------------------------------------------------------------------------------- /src/components/FormattedDate.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouranoshong/astro-melody-starter/HEAD/src/components/FormattedDate.astro -------------------------------------------------------------------------------- /src/components/Header.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouranoshong/astro-melody-starter/HEAD/src/components/Header.astro -------------------------------------------------------------------------------- /src/components/HeroCard.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouranoshong/astro-melody-starter/HEAD/src/components/HeroCard.astro -------------------------------------------------------------------------------- /src/components/Links.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouranoshong/astro-melody-starter/HEAD/src/components/Links.astro -------------------------------------------------------------------------------- /src/components/OptimizedPicture.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouranoshong/astro-melody-starter/HEAD/src/components/OptimizedPicture.astro -------------------------------------------------------------------------------- /src/components/Pagination.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouranoshong/astro-melody-starter/HEAD/src/components/Pagination.astro -------------------------------------------------------------------------------- /src/components/RelatedPostsCard.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouranoshong/astro-melody-starter/HEAD/src/components/RelatedPostsCard.astro -------------------------------------------------------------------------------- /src/consts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouranoshong/astro-melody-starter/HEAD/src/consts.ts -------------------------------------------------------------------------------- /src/content/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouranoshong/astro-melody-starter/HEAD/src/content/config.ts -------------------------------------------------------------------------------- /src/content/posts/assets-guides-fonts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouranoshong/astro-melody-starter/HEAD/src/content/posts/assets-guides-fonts.md -------------------------------------------------------------------------------- /src/content/posts/assets-guides-images.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouranoshong/astro-melody-starter/HEAD/src/content/posts/assets-guides-images.md -------------------------------------------------------------------------------- /src/content/posts/assets-guides-media.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouranoshong/astro-melody-starter/HEAD/src/content/posts/assets-guides-media.md -------------------------------------------------------------------------------- /src/content/posts/assets-guides-styling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouranoshong/astro-melody-starter/HEAD/src/content/posts/assets-guides-styling.md -------------------------------------------------------------------------------- /src/content/posts/astro-api-reference-reference-api-reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouranoshong/astro-melody-starter/HEAD/src/content/posts/astro-api-reference-reference-api-reference.md -------------------------------------------------------------------------------- /src/content/posts/astro-api-reference-reference-modules-astro-actions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouranoshong/astro-melody-starter/HEAD/src/content/posts/astro-api-reference-reference-modules-astro-actions.md -------------------------------------------------------------------------------- /src/content/posts/astro-api-reference-reference-modules-astro-assets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouranoshong/astro-melody-starter/HEAD/src/content/posts/astro-api-reference-reference-modules-astro-assets.md -------------------------------------------------------------------------------- /src/content/posts/astro-api-reference-reference-modules-astro-content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouranoshong/astro-melody-starter/HEAD/src/content/posts/astro-api-reference-reference-modules-astro-content.md -------------------------------------------------------------------------------- /src/content/posts/astro-api-reference-reference-modules-astro-i18n.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouranoshong/astro-melody-starter/HEAD/src/content/posts/astro-api-reference-reference-modules-astro-i18n.md -------------------------------------------------------------------------------- /src/content/posts/astro-api-reference-reference-modules-astro-middleware.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouranoshong/astro-melody-starter/HEAD/src/content/posts/astro-api-reference-reference-modules-astro-middleware.md -------------------------------------------------------------------------------- /src/content/posts/astro-api-reference-reference-modules-astro-transitions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouranoshong/astro-melody-starter/HEAD/src/content/posts/astro-api-reference-reference-modules-astro-transitions.md -------------------------------------------------------------------------------- /src/content/posts/client-side-interactivity-guides-client-side-scripts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouranoshong/astro-melody-starter/HEAD/src/content/posts/client-side-interactivity-guides-client-side-scripts.md -------------------------------------------------------------------------------- /src/content/posts/client-side-interactivity-guides-framework-components.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouranoshong/astro-melody-starter/HEAD/src/content/posts/client-side-interactivity-guides-framework-components.md -------------------------------------------------------------------------------- /src/content/posts/community-resources-community-resources-content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouranoshong/astro-melody-starter/HEAD/src/content/posts/community-resources-community-resources-content.md -------------------------------------------------------------------------------- /src/content/posts/community-resources-community-resources-talks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouranoshong/astro-melody-starter/HEAD/src/content/posts/community-resources-community-resources-talks.md -------------------------------------------------------------------------------- /src/content/posts/connect-your-data-guides-astro-db.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouranoshong/astro-melody-starter/HEAD/src/content/posts/connect-your-data-guides-astro-db.md -------------------------------------------------------------------------------- /src/content/posts/connect-your-data-guides-authentication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouranoshong/astro-melody-starter/HEAD/src/content/posts/connect-your-data-guides-authentication.md -------------------------------------------------------------------------------- /src/content/posts/connect-your-data-guides-backend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouranoshong/astro-melody-starter/HEAD/src/content/posts/connect-your-data-guides-backend.md -------------------------------------------------------------------------------- /src/content/posts/connect-your-data-guides-data-fetching.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouranoshong/astro-melody-starter/HEAD/src/content/posts/connect-your-data-guides-data-fetching.md -------------------------------------------------------------------------------- /src/content/posts/connect-your-data-guides-ecommerce.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouranoshong/astro-melody-starter/HEAD/src/content/posts/connect-your-data-guides-ecommerce.md -------------------------------------------------------------------------------- /src/content/posts/connect-your-data-guides-environment-variables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouranoshong/astro-melody-starter/HEAD/src/content/posts/connect-your-data-guides-environment-variables.md -------------------------------------------------------------------------------- /src/content/posts/core-concepts-concepts-islands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouranoshong/astro-melody-starter/HEAD/src/content/posts/core-concepts-concepts-islands.md -------------------------------------------------------------------------------- /src/content/posts/core-concepts-concepts-why-astro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouranoshong/astro-melody-starter/HEAD/src/content/posts/core-concepts-concepts-why-astro.md -------------------------------------------------------------------------------- /src/content/posts/learn-the-basics-basics-astro-components.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouranoshong/astro-melody-starter/HEAD/src/content/posts/learn-the-basics-basics-astro-components.md -------------------------------------------------------------------------------- /src/content/posts/learn-the-basics-basics-astro-pages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouranoshong/astro-melody-starter/HEAD/src/content/posts/learn-the-basics-basics-astro-pages.md -------------------------------------------------------------------------------- /src/content/posts/learn-the-basics-basics-astro-syntax.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouranoshong/astro-melody-starter/HEAD/src/content/posts/learn-the-basics-basics-astro-syntax.md -------------------------------------------------------------------------------- /src/content/posts/learn-the-basics-basics-layouts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouranoshong/astro-melody-starter/HEAD/src/content/posts/learn-the-basics-basics-layouts.md -------------------------------------------------------------------------------- /src/content/posts/learn-the-basics-basics-project-structure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouranoshong/astro-melody-starter/HEAD/src/content/posts/learn-the-basics-basics-project-structure.md -------------------------------------------------------------------------------- /src/content/posts/learn-the-basics-basics-rendering-modes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouranoshong/astro-melody-starter/HEAD/src/content/posts/learn-the-basics-basics-rendering-modes.md -------------------------------------------------------------------------------- /src/content/posts/learn-the-basics-guides-imports.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouranoshong/astro-melody-starter/HEAD/src/content/posts/learn-the-basics-guides-imports.md -------------------------------------------------------------------------------- /src/content/posts/learn-the-basics-guides-integrations-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouranoshong/astro-melody-starter/HEAD/src/content/posts/learn-the-basics-guides-integrations-guide.md -------------------------------------------------------------------------------- /src/content/posts/maintain-your-project-guides-testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouranoshong/astro-melody-starter/HEAD/src/content/posts/maintain-your-project-guides-testing.md -------------------------------------------------------------------------------- /src/content/posts/maintain-your-project-guides-troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouranoshong/astro-melody-starter/HEAD/src/content/posts/maintain-your-project-guides-troubleshooting.md -------------------------------------------------------------------------------- /src/content/posts/maintain-your-project-upgrade-astro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouranoshong/astro-melody-starter/HEAD/src/content/posts/maintain-your-project-upgrade-astro.md -------------------------------------------------------------------------------- /src/content/posts/manage-your-content-guides-cms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouranoshong/astro-melody-starter/HEAD/src/content/posts/manage-your-content-guides-cms.md -------------------------------------------------------------------------------- /src/content/posts/manage-your-content-guides-content-collections.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouranoshong/astro-melody-starter/HEAD/src/content/posts/manage-your-content-guides-content-collections.md -------------------------------------------------------------------------------- /src/content/posts/manage-your-content-guides-content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouranoshong/astro-melody-starter/HEAD/src/content/posts/manage-your-content-guides-content.md -------------------------------------------------------------------------------- /src/content/posts/manage-your-content-guides-markdown-content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouranoshong/astro-melody-starter/HEAD/src/content/posts/manage-your-content-guides-markdown-content.md -------------------------------------------------------------------------------- /src/content/posts/manage-your-content-guides-rss.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouranoshong/astro-melody-starter/HEAD/src/content/posts/manage-your-content-guides-rss.md -------------------------------------------------------------------------------- /src/content/posts/other-development-apis-reference-adapter-reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouranoshong/astro-melody-starter/HEAD/src/content/posts/other-development-apis-reference-adapter-reference.md -------------------------------------------------------------------------------- /src/content/posts/other-development-apis-reference-container-reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouranoshong/astro-melody-starter/HEAD/src/content/posts/other-development-apis-reference-container-reference.md -------------------------------------------------------------------------------- /src/content/posts/other-development-apis-reference-dev-toolbar-app-reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouranoshong/astro-melody-starter/HEAD/src/content/posts/other-development-apis-reference-dev-toolbar-app-reference.md -------------------------------------------------------------------------------- /src/content/posts/other-development-apis-reference-image-service-reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouranoshong/astro-melody-starter/HEAD/src/content/posts/other-development-apis-reference-image-service-reference.md -------------------------------------------------------------------------------- /src/content/posts/other-development-apis-reference-integrations-reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouranoshong/astro-melody-starter/HEAD/src/content/posts/other-development-apis-reference-integrations-reference.md -------------------------------------------------------------------------------- /src/content/posts/reference-guides-typescript.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouranoshong/astro-melody-starter/HEAD/src/content/posts/reference-guides-typescript.md -------------------------------------------------------------------------------- /src/content/posts/reference-reference-cli-reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouranoshong/astro-melody-starter/HEAD/src/content/posts/reference-reference-cli-reference.md -------------------------------------------------------------------------------- /src/content/posts/reference-reference-components-reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouranoshong/astro-melody-starter/HEAD/src/content/posts/reference-reference-components-reference.md -------------------------------------------------------------------------------- /src/content/posts/reference-reference-configuration-reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouranoshong/astro-melody-starter/HEAD/src/content/posts/reference-reference-configuration-reference.md -------------------------------------------------------------------------------- /src/content/posts/reference-reference-directives-reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouranoshong/astro-melody-starter/HEAD/src/content/posts/reference-reference-directives-reference.md -------------------------------------------------------------------------------- /src/content/posts/reference-reference-error-reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouranoshong/astro-melody-starter/HEAD/src/content/posts/reference-reference-error-reference.md -------------------------------------------------------------------------------- /src/content/posts/routes-and-navigation-guides-actions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouranoshong/astro-melody-starter/HEAD/src/content/posts/routes-and-navigation-guides-actions.md -------------------------------------------------------------------------------- /src/content/posts/routes-and-navigation-guides-endpoints.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouranoshong/astro-melody-starter/HEAD/src/content/posts/routes-and-navigation-guides-endpoints.md -------------------------------------------------------------------------------- /src/content/posts/routes-and-navigation-guides-internationalization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouranoshong/astro-melody-starter/HEAD/src/content/posts/routes-and-navigation-guides-internationalization.md -------------------------------------------------------------------------------- /src/content/posts/routes-and-navigation-guides-middleware.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouranoshong/astro-melody-starter/HEAD/src/content/posts/routes-and-navigation-guides-middleware.md -------------------------------------------------------------------------------- /src/content/posts/routes-and-navigation-guides-prefetch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouranoshong/astro-melody-starter/HEAD/src/content/posts/routes-and-navigation-guides-prefetch.md -------------------------------------------------------------------------------- /src/content/posts/routes-and-navigation-guides-routing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouranoshong/astro-melody-starter/HEAD/src/content/posts/routes-and-navigation-guides-routing.md -------------------------------------------------------------------------------- /src/content/posts/routes-and-navigation-guides-view-transitions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouranoshong/astro-melody-starter/HEAD/src/content/posts/routes-and-navigation-guides-view-transitions.md -------------------------------------------------------------------------------- /src/content/posts/welcome-world-getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouranoshong/astro-melody-starter/HEAD/src/content/posts/welcome-world-getting-started.md -------------------------------------------------------------------------------- /src/content/posts/welcome-world-guides-deploy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouranoshong/astro-melody-starter/HEAD/src/content/posts/welcome-world-guides-deploy.md -------------------------------------------------------------------------------- /src/content/posts/welcome-world-guides-migrate-to-astro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouranoshong/astro-melody-starter/HEAD/src/content/posts/welcome-world-guides-migrate-to-astro.md -------------------------------------------------------------------------------- /src/content/posts/welcome-world-install-and-setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouranoshong/astro-melody-starter/HEAD/src/content/posts/welcome-world-install-and-setup.md -------------------------------------------------------------------------------- /src/content/posts/welcome-world-tutorial-0-introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouranoshong/astro-melody-starter/HEAD/src/content/posts/welcome-world-tutorial-0-introduction.md -------------------------------------------------------------------------------- /src/env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouranoshong/astro-melody-starter/HEAD/src/env.d.ts -------------------------------------------------------------------------------- /src/layouts/BaseLayout.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouranoshong/astro-melody-starter/HEAD/src/layouts/BaseLayout.astro -------------------------------------------------------------------------------- /src/pages/404.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouranoshong/astro-melody-starter/HEAD/src/pages/404.astro -------------------------------------------------------------------------------- /src/pages/category/[category]/[page].astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouranoshong/astro-melody-starter/HEAD/src/pages/category/[category]/[page].astro -------------------------------------------------------------------------------- /src/pages/index.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouranoshong/astro-melody-starter/HEAD/src/pages/index.astro -------------------------------------------------------------------------------- /src/pages/page/[page].astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouranoshong/astro-melody-starter/HEAD/src/pages/page/[page].astro -------------------------------------------------------------------------------- /src/pages/posts/[...slug].astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouranoshong/astro-melody-starter/HEAD/src/pages/posts/[...slug].astro -------------------------------------------------------------------------------- /src/pages/robots.txt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouranoshong/astro-melody-starter/HEAD/src/pages/robots.txt.ts -------------------------------------------------------------------------------- /src/pages/rss.xml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouranoshong/astro-melody-starter/HEAD/src/pages/rss.xml.js -------------------------------------------------------------------------------- /src/pages/search.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouranoshong/astro-melody-starter/HEAD/src/pages/search.astro -------------------------------------------------------------------------------- /src/pages/tags/[tag]/[page].astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouranoshong/astro-melody-starter/HEAD/src/pages/tags/[tag]/[page].astro -------------------------------------------------------------------------------- /src/pages/tags/index.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouranoshong/astro-melody-starter/HEAD/src/pages/tags/index.astro -------------------------------------------------------------------------------- /src/utils/remark-modified-time.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouranoshong/astro-melody-starter/HEAD/src/utils/remark-modified-time.mjs -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ouranoshong/astro-melody-starter/HEAD/tsconfig.json --------------------------------------------------------------------------------