├── .env.test ├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── .prettierignore ├── LICENSE ├── README.md ├── astro.config.ts ├── env.d.ts ├── netlify.toml ├── package.json ├── pnpm-lock.yaml ├── public ├── android-chrome-192x192.png ├── android-chrome-512x512.png ├── apple-touch-icon.png ├── browserconfig.xml ├── favicon-16x16.png ├── favicon-32x32.png ├── favicon.ico ├── favicon.svg ├── mstile-150x150.png ├── robots.txt ├── safari-pinned-tab.svg └── site.webmanifest ├── src ├── components │ ├── AuthorCard.astro │ ├── AuthorList.astro │ ├── BaseHead.astro │ ├── FeatureImage.astro │ ├── Footer.astro │ ├── Header.astro │ ├── HeroContent.astro │ ├── MainLayout.astro │ ├── Page.astro │ ├── Paginator.astro │ ├── Post.astro │ ├── PostFooter.astro │ ├── PostHero.astro │ ├── PostPreview.astro │ ├── PostPreviewList.astro │ └── TagCard.astro ├── env.d.ts ├── layouts │ └── default.astro ├── pages │ ├── [slug].astro │ ├── archives │ │ └── [...page].astro │ ├── author │ │ └── [slug].astro │ ├── authors │ │ └── index.astro │ ├── index.astro │ ├── tag │ │ └── [slug].astro │ └── tags │ │ └── index.astro ├── styles │ ├── app.scss │ ├── reset.scss │ └── variables.scss └── utils │ ├── api.ts │ └── index.ts └── tsconfig.json /.env.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilDL/astro-starter-ghost/HEAD/.env.test -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | dist 2 | node_modules 3 | .github 4 | .changeset -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilDL/astro-starter-ghost/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilDL/astro-starter-ghost/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | 3 | dist 4 | .env 5 | .idea 6 | 7 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilDL/astro-starter-ghost/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilDL/astro-starter-ghost/HEAD/README.md -------------------------------------------------------------------------------- /astro.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilDL/astro-starter-ghost/HEAD/astro.config.ts -------------------------------------------------------------------------------- /env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilDL/astro-starter-ghost/HEAD/env.d.ts -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilDL/astro-starter-ghost/HEAD/netlify.toml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilDL/astro-starter-ghost/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilDL/astro-starter-ghost/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /public/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilDL/astro-starter-ghost/HEAD/public/android-chrome-192x192.png -------------------------------------------------------------------------------- /public/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilDL/astro-starter-ghost/HEAD/public/android-chrome-512x512.png -------------------------------------------------------------------------------- /public/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilDL/astro-starter-ghost/HEAD/public/apple-touch-icon.png -------------------------------------------------------------------------------- /public/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilDL/astro-starter-ghost/HEAD/public/browserconfig.xml -------------------------------------------------------------------------------- /public/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilDL/astro-starter-ghost/HEAD/public/favicon-16x16.png -------------------------------------------------------------------------------- /public/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilDL/astro-starter-ghost/HEAD/public/favicon-32x32.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilDL/astro-starter-ghost/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilDL/astro-starter-ghost/HEAD/public/favicon.svg -------------------------------------------------------------------------------- /public/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilDL/astro-starter-ghost/HEAD/public/mstile-150x150.png -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: / 3 | -------------------------------------------------------------------------------- /public/safari-pinned-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilDL/astro-starter-ghost/HEAD/public/safari-pinned-tab.svg -------------------------------------------------------------------------------- /public/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilDL/astro-starter-ghost/HEAD/public/site.webmanifest -------------------------------------------------------------------------------- /src/components/AuthorCard.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilDL/astro-starter-ghost/HEAD/src/components/AuthorCard.astro -------------------------------------------------------------------------------- /src/components/AuthorList.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilDL/astro-starter-ghost/HEAD/src/components/AuthorList.astro -------------------------------------------------------------------------------- /src/components/BaseHead.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilDL/astro-starter-ghost/HEAD/src/components/BaseHead.astro -------------------------------------------------------------------------------- /src/components/FeatureImage.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilDL/astro-starter-ghost/HEAD/src/components/FeatureImage.astro -------------------------------------------------------------------------------- /src/components/Footer.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilDL/astro-starter-ghost/HEAD/src/components/Footer.astro -------------------------------------------------------------------------------- /src/components/Header.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilDL/astro-starter-ghost/HEAD/src/components/Header.astro -------------------------------------------------------------------------------- /src/components/HeroContent.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilDL/astro-starter-ghost/HEAD/src/components/HeroContent.astro -------------------------------------------------------------------------------- /src/components/MainLayout.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilDL/astro-starter-ghost/HEAD/src/components/MainLayout.astro -------------------------------------------------------------------------------- /src/components/Page.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilDL/astro-starter-ghost/HEAD/src/components/Page.astro -------------------------------------------------------------------------------- /src/components/Paginator.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilDL/astro-starter-ghost/HEAD/src/components/Paginator.astro -------------------------------------------------------------------------------- /src/components/Post.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilDL/astro-starter-ghost/HEAD/src/components/Post.astro -------------------------------------------------------------------------------- /src/components/PostFooter.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilDL/astro-starter-ghost/HEAD/src/components/PostFooter.astro -------------------------------------------------------------------------------- /src/components/PostHero.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilDL/astro-starter-ghost/HEAD/src/components/PostHero.astro -------------------------------------------------------------------------------- /src/components/PostPreview.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilDL/astro-starter-ghost/HEAD/src/components/PostPreview.astro -------------------------------------------------------------------------------- /src/components/PostPreviewList.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilDL/astro-starter-ghost/HEAD/src/components/PostPreviewList.astro -------------------------------------------------------------------------------- /src/components/TagCard.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilDL/astro-starter-ghost/HEAD/src/components/TagCard.astro -------------------------------------------------------------------------------- /src/env.d.ts: -------------------------------------------------------------------------------- 1 | /// -------------------------------------------------------------------------------- /src/layouts/default.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilDL/astro-starter-ghost/HEAD/src/layouts/default.astro -------------------------------------------------------------------------------- /src/pages/[slug].astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilDL/astro-starter-ghost/HEAD/src/pages/[slug].astro -------------------------------------------------------------------------------- /src/pages/archives/[...page].astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilDL/astro-starter-ghost/HEAD/src/pages/archives/[...page].astro -------------------------------------------------------------------------------- /src/pages/author/[slug].astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilDL/astro-starter-ghost/HEAD/src/pages/author/[slug].astro -------------------------------------------------------------------------------- /src/pages/authors/index.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilDL/astro-starter-ghost/HEAD/src/pages/authors/index.astro -------------------------------------------------------------------------------- /src/pages/index.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilDL/astro-starter-ghost/HEAD/src/pages/index.astro -------------------------------------------------------------------------------- /src/pages/tag/[slug].astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilDL/astro-starter-ghost/HEAD/src/pages/tag/[slug].astro -------------------------------------------------------------------------------- /src/pages/tags/index.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilDL/astro-starter-ghost/HEAD/src/pages/tags/index.astro -------------------------------------------------------------------------------- /src/styles/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilDL/astro-starter-ghost/HEAD/src/styles/app.scss -------------------------------------------------------------------------------- /src/styles/reset.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilDL/astro-starter-ghost/HEAD/src/styles/reset.scss -------------------------------------------------------------------------------- /src/styles/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilDL/astro-starter-ghost/HEAD/src/styles/variables.scss -------------------------------------------------------------------------------- /src/utils/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilDL/astro-starter-ghost/HEAD/src/utils/api.ts -------------------------------------------------------------------------------- /src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilDL/astro-starter-ghost/HEAD/src/utils/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhilDL/astro-starter-ghost/HEAD/tsconfig.json --------------------------------------------------------------------------------