├── .gitignore ├── .prettierrc.mjs ├── .vscode ├── extensions.json └── launch.json ├── LICENSE ├── README.md ├── astro.config.mjs ├── package.json ├── public ├── android-chrome-192x192.png ├── android-chrome-512x512.png ├── apple-touch-icon.png ├── favicon-16x16.png ├── favicon-32x32.png ├── favicon.ico ├── og.jpg └── site.webmanifest ├── src ├── components │ ├── BaseHead.astro │ ├── ExternalLink.astro │ ├── Favicons.astro │ ├── Footer.astro │ ├── Introduction.astro │ ├── Navigation.astro │ ├── Post.astro │ ├── Posts.astro │ ├── Projects.astro │ ├── SeoPage.astro │ ├── SeoPost.astro │ ├── SocialLinks.astro │ └── ThemeToggle.astro ├── content.config.ts ├── content │ ├── blog │ │ ├── alice-in-wonderland │ │ │ └── index.md │ │ ├── markdown-syntax-example │ │ │ ├── index.md │ │ │ └── x-wing.jpeg │ │ ├── metamorphosis │ │ │ ├── index.md │ │ │ └── metamorphosis.jpg │ │ ├── sleep-hollow │ │ │ └── index.md │ │ └── yellow-wallpaper │ │ │ └── index.md │ └── projects │ │ ├── astro-micro │ │ └── index.md │ │ ├── classless-css │ │ └── index.md │ │ ├── superwebthemes │ │ └── index.md │ │ └── thirty-six-questions │ │ └── index.md ├── env.d.ts ├── layouts │ └── BaseLayout.astro ├── lib │ └── util.ts ├── pages │ ├── 404.astro │ ├── blog │ │ ├── [...id].astro │ │ └── index.astro │ ├── index.astro │ ├── projects │ │ └── index.astro │ ├── robots.txt.ts │ └── rss.xml.js ├── siteConfig.ts ├── styles │ ├── global.css │ └── typography.css └── types.ts └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/barebones/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/barebones/HEAD/.prettierrc.mjs -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/barebones/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/barebones/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/barebones/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/barebones/HEAD/README.md -------------------------------------------------------------------------------- /astro.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/barebones/HEAD/astro.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/barebones/HEAD/package.json -------------------------------------------------------------------------------- /public/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/barebones/HEAD/public/android-chrome-192x192.png -------------------------------------------------------------------------------- /public/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/barebones/HEAD/public/android-chrome-512x512.png -------------------------------------------------------------------------------- /public/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/barebones/HEAD/public/apple-touch-icon.png -------------------------------------------------------------------------------- /public/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/barebones/HEAD/public/favicon-16x16.png -------------------------------------------------------------------------------- /public/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/barebones/HEAD/public/favicon-32x32.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/barebones/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/og.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/barebones/HEAD/public/og.jpg -------------------------------------------------------------------------------- /public/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/barebones/HEAD/public/site.webmanifest -------------------------------------------------------------------------------- /src/components/BaseHead.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/barebones/HEAD/src/components/BaseHead.astro -------------------------------------------------------------------------------- /src/components/ExternalLink.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/barebones/HEAD/src/components/ExternalLink.astro -------------------------------------------------------------------------------- /src/components/Favicons.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/barebones/HEAD/src/components/Favicons.astro -------------------------------------------------------------------------------- /src/components/Footer.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/barebones/HEAD/src/components/Footer.astro -------------------------------------------------------------------------------- /src/components/Introduction.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/barebones/HEAD/src/components/Introduction.astro -------------------------------------------------------------------------------- /src/components/Navigation.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/barebones/HEAD/src/components/Navigation.astro -------------------------------------------------------------------------------- /src/components/Post.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/barebones/HEAD/src/components/Post.astro -------------------------------------------------------------------------------- /src/components/Posts.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/barebones/HEAD/src/components/Posts.astro -------------------------------------------------------------------------------- /src/components/Projects.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/barebones/HEAD/src/components/Projects.astro -------------------------------------------------------------------------------- /src/components/SeoPage.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/barebones/HEAD/src/components/SeoPage.astro -------------------------------------------------------------------------------- /src/components/SeoPost.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/barebones/HEAD/src/components/SeoPost.astro -------------------------------------------------------------------------------- /src/components/SocialLinks.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/barebones/HEAD/src/components/SocialLinks.astro -------------------------------------------------------------------------------- /src/components/ThemeToggle.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/barebones/HEAD/src/components/ThemeToggle.astro -------------------------------------------------------------------------------- /src/content.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/barebones/HEAD/src/content.config.ts -------------------------------------------------------------------------------- /src/content/blog/alice-in-wonderland/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/barebones/HEAD/src/content/blog/alice-in-wonderland/index.md -------------------------------------------------------------------------------- /src/content/blog/markdown-syntax-example/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/barebones/HEAD/src/content/blog/markdown-syntax-example/index.md -------------------------------------------------------------------------------- /src/content/blog/markdown-syntax-example/x-wing.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/barebones/HEAD/src/content/blog/markdown-syntax-example/x-wing.jpeg -------------------------------------------------------------------------------- /src/content/blog/metamorphosis/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/barebones/HEAD/src/content/blog/metamorphosis/index.md -------------------------------------------------------------------------------- /src/content/blog/metamorphosis/metamorphosis.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/barebones/HEAD/src/content/blog/metamorphosis/metamorphosis.jpg -------------------------------------------------------------------------------- /src/content/blog/sleep-hollow/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/barebones/HEAD/src/content/blog/sleep-hollow/index.md -------------------------------------------------------------------------------- /src/content/blog/yellow-wallpaper/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/barebones/HEAD/src/content/blog/yellow-wallpaper/index.md -------------------------------------------------------------------------------- /src/content/projects/astro-micro/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/barebones/HEAD/src/content/projects/astro-micro/index.md -------------------------------------------------------------------------------- /src/content/projects/classless-css/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/barebones/HEAD/src/content/projects/classless-css/index.md -------------------------------------------------------------------------------- /src/content/projects/superwebthemes/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/barebones/HEAD/src/content/projects/superwebthemes/index.md -------------------------------------------------------------------------------- /src/content/projects/thirty-six-questions/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/barebones/HEAD/src/content/projects/thirty-six-questions/index.md -------------------------------------------------------------------------------- /src/env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/barebones/HEAD/src/env.d.ts -------------------------------------------------------------------------------- /src/layouts/BaseLayout.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/barebones/HEAD/src/layouts/BaseLayout.astro -------------------------------------------------------------------------------- /src/lib/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/barebones/HEAD/src/lib/util.ts -------------------------------------------------------------------------------- /src/pages/404.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/barebones/HEAD/src/pages/404.astro -------------------------------------------------------------------------------- /src/pages/blog/[...id].astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/barebones/HEAD/src/pages/blog/[...id].astro -------------------------------------------------------------------------------- /src/pages/blog/index.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/barebones/HEAD/src/pages/blog/index.astro -------------------------------------------------------------------------------- /src/pages/index.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/barebones/HEAD/src/pages/index.astro -------------------------------------------------------------------------------- /src/pages/projects/index.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/barebones/HEAD/src/pages/projects/index.astro -------------------------------------------------------------------------------- /src/pages/robots.txt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/barebones/HEAD/src/pages/robots.txt.ts -------------------------------------------------------------------------------- /src/pages/rss.xml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/barebones/HEAD/src/pages/rss.xml.js -------------------------------------------------------------------------------- /src/siteConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/barebones/HEAD/src/siteConfig.ts -------------------------------------------------------------------------------- /src/styles/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/barebones/HEAD/src/styles/global.css -------------------------------------------------------------------------------- /src/styles/typography.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/barebones/HEAD/src/styles/typography.css -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/barebones/HEAD/src/types.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/barebones/HEAD/tsconfig.json --------------------------------------------------------------------------------