├── .gitattributes ├── .gitignore ├── .tina ├── __generated__ │ ├── .gitignore │ ├── _graphql.json │ ├── _lookup.json │ └── _schema.json └── config.ts ├── README.md ├── astro.config.mjs ├── package.json ├── public ├── admin │ └── .gitignore ├── favicon.svg ├── mdx-component.png ├── placeholder-about.jpg ├── placeholder-hero.jpg ├── placeholder-social.jpg └── robots.txt ├── src ├── components │ ├── BaseHead.astro │ ├── Counter.astro │ ├── Footer.astro │ ├── Header.astro │ ├── HeaderLink.astro │ └── VueCounter.vue ├── config.ts ├── content │ ├── first-post.mdx │ ├── markdown-style-guide.mdx │ ├── second-post.mdx │ ├── third-post.mdx │ └── using-mdx.mdx ├── env.d.ts ├── layouts │ └── BlogPost.astro ├── pages │ ├── [slug].astro │ ├── about.md │ ├── blog.astro │ ├── index.astro │ └── rss.xml.js └── styles │ └── global.css └── tsconfig.json /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombennet/astro-tina-starter/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombennet/astro-tina-starter/HEAD/.gitignore -------------------------------------------------------------------------------- /.tina/__generated__/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombennet/astro-tina-starter/HEAD/.tina/__generated__/.gitignore -------------------------------------------------------------------------------- /.tina/__generated__/_graphql.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombennet/astro-tina-starter/HEAD/.tina/__generated__/_graphql.json -------------------------------------------------------------------------------- /.tina/__generated__/_lookup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombennet/astro-tina-starter/HEAD/.tina/__generated__/_lookup.json -------------------------------------------------------------------------------- /.tina/__generated__/_schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombennet/astro-tina-starter/HEAD/.tina/__generated__/_schema.json -------------------------------------------------------------------------------- /.tina/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombennet/astro-tina-starter/HEAD/.tina/config.ts -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombennet/astro-tina-starter/HEAD/README.md -------------------------------------------------------------------------------- /astro.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombennet/astro-tina-starter/HEAD/astro.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombennet/astro-tina-starter/HEAD/package.json -------------------------------------------------------------------------------- /public/admin/.gitignore: -------------------------------------------------------------------------------- 1 | index.html 2 | assets/ -------------------------------------------------------------------------------- /public/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombennet/astro-tina-starter/HEAD/public/favicon.svg -------------------------------------------------------------------------------- /public/mdx-component.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombennet/astro-tina-starter/HEAD/public/mdx-component.png -------------------------------------------------------------------------------- /public/placeholder-about.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombennet/astro-tina-starter/HEAD/public/placeholder-about.jpg -------------------------------------------------------------------------------- /public/placeholder-hero.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombennet/astro-tina-starter/HEAD/public/placeholder-hero.jpg -------------------------------------------------------------------------------- /public/placeholder-social.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombennet/astro-tina-starter/HEAD/public/placeholder-social.jpg -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/BaseHead.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombennet/astro-tina-starter/HEAD/src/components/BaseHead.astro -------------------------------------------------------------------------------- /src/components/Counter.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombennet/astro-tina-starter/HEAD/src/components/Counter.astro -------------------------------------------------------------------------------- /src/components/Footer.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombennet/astro-tina-starter/HEAD/src/components/Footer.astro -------------------------------------------------------------------------------- /src/components/Header.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombennet/astro-tina-starter/HEAD/src/components/Header.astro -------------------------------------------------------------------------------- /src/components/HeaderLink.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombennet/astro-tina-starter/HEAD/src/components/HeaderLink.astro -------------------------------------------------------------------------------- /src/components/VueCounter.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombennet/astro-tina-starter/HEAD/src/components/VueCounter.vue -------------------------------------------------------------------------------- /src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombennet/astro-tina-starter/HEAD/src/config.ts -------------------------------------------------------------------------------- /src/content/first-post.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombennet/astro-tina-starter/HEAD/src/content/first-post.mdx -------------------------------------------------------------------------------- /src/content/markdown-style-guide.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombennet/astro-tina-starter/HEAD/src/content/markdown-style-guide.mdx -------------------------------------------------------------------------------- /src/content/second-post.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombennet/astro-tina-starter/HEAD/src/content/second-post.mdx -------------------------------------------------------------------------------- /src/content/third-post.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombennet/astro-tina-starter/HEAD/src/content/third-post.mdx -------------------------------------------------------------------------------- /src/content/using-mdx.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombennet/astro-tina-starter/HEAD/src/content/using-mdx.mdx -------------------------------------------------------------------------------- /src/env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /src/layouts/BlogPost.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombennet/astro-tina-starter/HEAD/src/layouts/BlogPost.astro -------------------------------------------------------------------------------- /src/pages/[slug].astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombennet/astro-tina-starter/HEAD/src/pages/[slug].astro -------------------------------------------------------------------------------- /src/pages/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombennet/astro-tina-starter/HEAD/src/pages/about.md -------------------------------------------------------------------------------- /src/pages/blog.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombennet/astro-tina-starter/HEAD/src/pages/blog.astro -------------------------------------------------------------------------------- /src/pages/index.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombennet/astro-tina-starter/HEAD/src/pages/index.astro -------------------------------------------------------------------------------- /src/pages/rss.xml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombennet/astro-tina-starter/HEAD/src/pages/rss.xml.js -------------------------------------------------------------------------------- /src/styles/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombennet/astro-tina-starter/HEAD/src/styles/global.css -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tombennet/astro-tina-starter/HEAD/tsconfig.json --------------------------------------------------------------------------------