├── .gitignore ├── .prettierrc.mjs ├── .vscode ├── extensions.json └── launch.json ├── LICENSE ├── README.md ├── astro.config.mjs ├── package.json ├── public ├── astro-micro-lighthouse.jpg ├── astro-micro.jpg ├── astro-nano-lighthouse.jpg ├── astro-nano.png ├── astro-sphere-lighthouse.jpg ├── astro-sphere.jpg ├── blog-placeholder-1.jpg ├── deploy_netlify.svg ├── deploy_vercel.svg ├── favicon.ico ├── lighthouse-nano.jpg ├── lighthouse-sphere.jpg ├── pagefind │ ├── fragment │ │ ├── en_26435e5.pf_fragment │ │ ├── en_2a5e6b1.pf_fragment │ │ ├── en_2fed8eb.pf_fragment │ │ ├── en_3131981.pf_fragment │ │ ├── en_3923b3d.pf_fragment │ │ ├── en_3ccfc4e.pf_fragment │ │ ├── en_3ec1c2b.pf_fragment │ │ ├── en_42f73b1.pf_fragment │ │ ├── en_4885cf2.pf_fragment │ │ ├── en_4cc991a.pf_fragment │ │ ├── en_4f7e69c.pf_fragment │ │ ├── en_51fdb47.pf_fragment │ │ ├── en_54fba64.pf_fragment │ │ ├── en_6935ba6.pf_fragment │ │ ├── en_6ee846f.pf_fragment │ │ ├── en_7a47df9.pf_fragment │ │ ├── en_7cbffcd.pf_fragment │ │ ├── en_8826d47.pf_fragment │ │ ├── en_a1fb37a.pf_fragment │ │ ├── en_a3eb135.pf_fragment │ │ ├── en_ad42bb6.pf_fragment │ │ ├── en_bbc53aa.pf_fragment │ │ ├── en_cf248be.pf_fragment │ │ ├── en_cf8ecb3.pf_fragment │ │ ├── en_fbe187d.pf_fragment │ │ └── en_fefcc58.pf_fragment │ ├── index │ │ ├── en_8739159.pf_index │ │ └── en_d0dad81.pf_index │ ├── pagefind-entry.json │ ├── pagefind-highlight.js │ ├── pagefind-modular-ui.css │ ├── pagefind-modular-ui.js │ ├── pagefind-ui.css │ ├── pagefind-ui.js │ ├── pagefind.en_2e70f624f4.pf_meta │ ├── pagefind.en_3fd8bd6252.pf_meta │ ├── pagefind.en_45ddb13fe8.pf_meta │ ├── pagefind.js │ ├── wasm.en.pagefind │ └── wasm.unknown.pagefind └── y-wing.jpeg ├── src ├── components │ ├── ArrowCard.astro │ ├── BackToPrevious.astro │ ├── BackToTop.astro │ ├── Callout.astro │ ├── Container.astro │ ├── Footer.astro │ ├── FormattedDate.astro │ ├── Giscus.astro │ ├── Head.astro │ ├── Header.astro │ ├── Link.astro │ ├── PageFind.astro │ ├── PostNavigation.astro │ ├── TableOfContents.astro │ ├── TableOfContentsHeading.astro │ └── TagCloud.astro ├── consts.ts ├── content.config.ts ├── content │ ├── blog │ │ ├── 00-micro-changelog │ │ │ └── index.mdx │ │ ├── 01-getting-started │ │ │ └── index.md │ │ ├── 02-blog-collection │ │ │ └── index.md │ │ ├── 03-projects-collection │ │ │ └── index.md │ │ ├── 04-markdown-syntax │ │ │ ├── index.mdx │ │ │ └── x-wing.jpeg │ │ ├── 05-mdx-syntax │ │ │ ├── component.astro │ │ │ └── index.mdx │ │ ├── 06-year-sorting-example │ │ │ └── index.md │ │ ├── 07-draft-example │ │ │ └── index.md │ │ └── 08-prev-next-order-example │ │ │ └── index.md │ └── projects │ │ ├── project-1 │ │ └── index.md │ │ ├── project-2 │ │ └── index.md │ │ └── project-3 │ │ └── index.md ├── layouts │ └── Layout.astro ├── lib │ └── utils.ts ├── pages │ ├── 404.astro │ ├── blog │ │ ├── [...id].astro │ │ └── index.astro │ ├── index.astro │ ├── projects │ │ ├── [...id].astro │ │ └── index.astro │ ├── rss.xml.js │ └── tags │ │ ├── [...id].astro │ │ └── index.astro ├── styles │ └── global.css └── types.ts └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/astro-micro/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/astro-micro/HEAD/.prettierrc.mjs -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/astro-micro/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/astro-micro/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/astro-micro/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/astro-micro/HEAD/README.md -------------------------------------------------------------------------------- /astro.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/astro-micro/HEAD/astro.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/astro-micro/HEAD/package.json -------------------------------------------------------------------------------- /public/astro-micro-lighthouse.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/astro-micro/HEAD/public/astro-micro-lighthouse.jpg -------------------------------------------------------------------------------- /public/astro-micro.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/astro-micro/HEAD/public/astro-micro.jpg -------------------------------------------------------------------------------- /public/astro-nano-lighthouse.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/astro-micro/HEAD/public/astro-nano-lighthouse.jpg -------------------------------------------------------------------------------- /public/astro-nano.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/astro-micro/HEAD/public/astro-nano.png -------------------------------------------------------------------------------- /public/astro-sphere-lighthouse.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/astro-micro/HEAD/public/astro-sphere-lighthouse.jpg -------------------------------------------------------------------------------- /public/astro-sphere.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/astro-micro/HEAD/public/astro-sphere.jpg -------------------------------------------------------------------------------- /public/blog-placeholder-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/astro-micro/HEAD/public/blog-placeholder-1.jpg -------------------------------------------------------------------------------- /public/deploy_netlify.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/astro-micro/HEAD/public/deploy_netlify.svg -------------------------------------------------------------------------------- /public/deploy_vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/astro-micro/HEAD/public/deploy_vercel.svg -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/astro-micro/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/lighthouse-nano.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/astro-micro/HEAD/public/lighthouse-nano.jpg -------------------------------------------------------------------------------- /public/lighthouse-sphere.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/astro-micro/HEAD/public/lighthouse-sphere.jpg -------------------------------------------------------------------------------- /public/pagefind/fragment/en_26435e5.pf_fragment: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/astro-micro/HEAD/public/pagefind/fragment/en_26435e5.pf_fragment -------------------------------------------------------------------------------- /public/pagefind/fragment/en_2a5e6b1.pf_fragment: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/astro-micro/HEAD/public/pagefind/fragment/en_2a5e6b1.pf_fragment -------------------------------------------------------------------------------- /public/pagefind/fragment/en_2fed8eb.pf_fragment: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/astro-micro/HEAD/public/pagefind/fragment/en_2fed8eb.pf_fragment -------------------------------------------------------------------------------- /public/pagefind/fragment/en_3131981.pf_fragment: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/astro-micro/HEAD/public/pagefind/fragment/en_3131981.pf_fragment -------------------------------------------------------------------------------- /public/pagefind/fragment/en_3923b3d.pf_fragment: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/astro-micro/HEAD/public/pagefind/fragment/en_3923b3d.pf_fragment -------------------------------------------------------------------------------- /public/pagefind/fragment/en_3ccfc4e.pf_fragment: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/astro-micro/HEAD/public/pagefind/fragment/en_3ccfc4e.pf_fragment -------------------------------------------------------------------------------- /public/pagefind/fragment/en_3ec1c2b.pf_fragment: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/astro-micro/HEAD/public/pagefind/fragment/en_3ec1c2b.pf_fragment -------------------------------------------------------------------------------- /public/pagefind/fragment/en_42f73b1.pf_fragment: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/astro-micro/HEAD/public/pagefind/fragment/en_42f73b1.pf_fragment -------------------------------------------------------------------------------- /public/pagefind/fragment/en_4885cf2.pf_fragment: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/astro-micro/HEAD/public/pagefind/fragment/en_4885cf2.pf_fragment -------------------------------------------------------------------------------- /public/pagefind/fragment/en_4cc991a.pf_fragment: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/astro-micro/HEAD/public/pagefind/fragment/en_4cc991a.pf_fragment -------------------------------------------------------------------------------- /public/pagefind/fragment/en_4f7e69c.pf_fragment: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/astro-micro/HEAD/public/pagefind/fragment/en_4f7e69c.pf_fragment -------------------------------------------------------------------------------- /public/pagefind/fragment/en_51fdb47.pf_fragment: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/astro-micro/HEAD/public/pagefind/fragment/en_51fdb47.pf_fragment -------------------------------------------------------------------------------- /public/pagefind/fragment/en_54fba64.pf_fragment: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/astro-micro/HEAD/public/pagefind/fragment/en_54fba64.pf_fragment -------------------------------------------------------------------------------- /public/pagefind/fragment/en_6935ba6.pf_fragment: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/astro-micro/HEAD/public/pagefind/fragment/en_6935ba6.pf_fragment -------------------------------------------------------------------------------- /public/pagefind/fragment/en_6ee846f.pf_fragment: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/astro-micro/HEAD/public/pagefind/fragment/en_6ee846f.pf_fragment -------------------------------------------------------------------------------- /public/pagefind/fragment/en_7a47df9.pf_fragment: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/astro-micro/HEAD/public/pagefind/fragment/en_7a47df9.pf_fragment -------------------------------------------------------------------------------- /public/pagefind/fragment/en_7cbffcd.pf_fragment: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/astro-micro/HEAD/public/pagefind/fragment/en_7cbffcd.pf_fragment -------------------------------------------------------------------------------- /public/pagefind/fragment/en_8826d47.pf_fragment: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/astro-micro/HEAD/public/pagefind/fragment/en_8826d47.pf_fragment -------------------------------------------------------------------------------- /public/pagefind/fragment/en_a1fb37a.pf_fragment: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/astro-micro/HEAD/public/pagefind/fragment/en_a1fb37a.pf_fragment -------------------------------------------------------------------------------- /public/pagefind/fragment/en_a3eb135.pf_fragment: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/astro-micro/HEAD/public/pagefind/fragment/en_a3eb135.pf_fragment -------------------------------------------------------------------------------- /public/pagefind/fragment/en_ad42bb6.pf_fragment: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/astro-micro/HEAD/public/pagefind/fragment/en_ad42bb6.pf_fragment -------------------------------------------------------------------------------- /public/pagefind/fragment/en_bbc53aa.pf_fragment: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/astro-micro/HEAD/public/pagefind/fragment/en_bbc53aa.pf_fragment -------------------------------------------------------------------------------- /public/pagefind/fragment/en_cf248be.pf_fragment: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/astro-micro/HEAD/public/pagefind/fragment/en_cf248be.pf_fragment -------------------------------------------------------------------------------- /public/pagefind/fragment/en_cf8ecb3.pf_fragment: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/astro-micro/HEAD/public/pagefind/fragment/en_cf8ecb3.pf_fragment -------------------------------------------------------------------------------- /public/pagefind/fragment/en_fbe187d.pf_fragment: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/astro-micro/HEAD/public/pagefind/fragment/en_fbe187d.pf_fragment -------------------------------------------------------------------------------- /public/pagefind/fragment/en_fefcc58.pf_fragment: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/astro-micro/HEAD/public/pagefind/fragment/en_fefcc58.pf_fragment -------------------------------------------------------------------------------- /public/pagefind/index/en_8739159.pf_index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/astro-micro/HEAD/public/pagefind/index/en_8739159.pf_index -------------------------------------------------------------------------------- /public/pagefind/index/en_d0dad81.pf_index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/astro-micro/HEAD/public/pagefind/index/en_d0dad81.pf_index -------------------------------------------------------------------------------- /public/pagefind/pagefind-entry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/astro-micro/HEAD/public/pagefind/pagefind-entry.json -------------------------------------------------------------------------------- /public/pagefind/pagefind-highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/astro-micro/HEAD/public/pagefind/pagefind-highlight.js -------------------------------------------------------------------------------- /public/pagefind/pagefind-modular-ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/astro-micro/HEAD/public/pagefind/pagefind-modular-ui.css -------------------------------------------------------------------------------- /public/pagefind/pagefind-modular-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/astro-micro/HEAD/public/pagefind/pagefind-modular-ui.js -------------------------------------------------------------------------------- /public/pagefind/pagefind-ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/astro-micro/HEAD/public/pagefind/pagefind-ui.css -------------------------------------------------------------------------------- /public/pagefind/pagefind-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/astro-micro/HEAD/public/pagefind/pagefind-ui.js -------------------------------------------------------------------------------- /public/pagefind/pagefind.en_2e70f624f4.pf_meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/astro-micro/HEAD/public/pagefind/pagefind.en_2e70f624f4.pf_meta -------------------------------------------------------------------------------- /public/pagefind/pagefind.en_3fd8bd6252.pf_meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/astro-micro/HEAD/public/pagefind/pagefind.en_3fd8bd6252.pf_meta -------------------------------------------------------------------------------- /public/pagefind/pagefind.en_45ddb13fe8.pf_meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/astro-micro/HEAD/public/pagefind/pagefind.en_45ddb13fe8.pf_meta -------------------------------------------------------------------------------- /public/pagefind/pagefind.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/astro-micro/HEAD/public/pagefind/pagefind.js -------------------------------------------------------------------------------- /public/pagefind/wasm.en.pagefind: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/astro-micro/HEAD/public/pagefind/wasm.en.pagefind -------------------------------------------------------------------------------- /public/pagefind/wasm.unknown.pagefind: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/astro-micro/HEAD/public/pagefind/wasm.unknown.pagefind -------------------------------------------------------------------------------- /public/y-wing.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/astro-micro/HEAD/public/y-wing.jpeg -------------------------------------------------------------------------------- /src/components/ArrowCard.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/astro-micro/HEAD/src/components/ArrowCard.astro -------------------------------------------------------------------------------- /src/components/BackToPrevious.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/astro-micro/HEAD/src/components/BackToPrevious.astro -------------------------------------------------------------------------------- /src/components/BackToTop.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/astro-micro/HEAD/src/components/BackToTop.astro -------------------------------------------------------------------------------- /src/components/Callout.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/astro-micro/HEAD/src/components/Callout.astro -------------------------------------------------------------------------------- /src/components/Container.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/astro-micro/HEAD/src/components/Container.astro -------------------------------------------------------------------------------- /src/components/Footer.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/astro-micro/HEAD/src/components/Footer.astro -------------------------------------------------------------------------------- /src/components/FormattedDate.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/astro-micro/HEAD/src/components/FormattedDate.astro -------------------------------------------------------------------------------- /src/components/Giscus.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/astro-micro/HEAD/src/components/Giscus.astro -------------------------------------------------------------------------------- /src/components/Head.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/astro-micro/HEAD/src/components/Head.astro -------------------------------------------------------------------------------- /src/components/Header.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/astro-micro/HEAD/src/components/Header.astro -------------------------------------------------------------------------------- /src/components/Link.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/astro-micro/HEAD/src/components/Link.astro -------------------------------------------------------------------------------- /src/components/PageFind.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/astro-micro/HEAD/src/components/PageFind.astro -------------------------------------------------------------------------------- /src/components/PostNavigation.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/astro-micro/HEAD/src/components/PostNavigation.astro -------------------------------------------------------------------------------- /src/components/TableOfContents.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/astro-micro/HEAD/src/components/TableOfContents.astro -------------------------------------------------------------------------------- /src/components/TableOfContentsHeading.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/astro-micro/HEAD/src/components/TableOfContentsHeading.astro -------------------------------------------------------------------------------- /src/components/TagCloud.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/astro-micro/HEAD/src/components/TagCloud.astro -------------------------------------------------------------------------------- /src/consts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/astro-micro/HEAD/src/consts.ts -------------------------------------------------------------------------------- /src/content.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/astro-micro/HEAD/src/content.config.ts -------------------------------------------------------------------------------- /src/content/blog/00-micro-changelog/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/astro-micro/HEAD/src/content/blog/00-micro-changelog/index.mdx -------------------------------------------------------------------------------- /src/content/blog/01-getting-started/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/astro-micro/HEAD/src/content/blog/01-getting-started/index.md -------------------------------------------------------------------------------- /src/content/blog/02-blog-collection/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/astro-micro/HEAD/src/content/blog/02-blog-collection/index.md -------------------------------------------------------------------------------- /src/content/blog/03-projects-collection/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/astro-micro/HEAD/src/content/blog/03-projects-collection/index.md -------------------------------------------------------------------------------- /src/content/blog/04-markdown-syntax/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/astro-micro/HEAD/src/content/blog/04-markdown-syntax/index.mdx -------------------------------------------------------------------------------- /src/content/blog/04-markdown-syntax/x-wing.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/astro-micro/HEAD/src/content/blog/04-markdown-syntax/x-wing.jpeg -------------------------------------------------------------------------------- /src/content/blog/05-mdx-syntax/component.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/astro-micro/HEAD/src/content/blog/05-mdx-syntax/component.astro -------------------------------------------------------------------------------- /src/content/blog/05-mdx-syntax/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/astro-micro/HEAD/src/content/blog/05-mdx-syntax/index.mdx -------------------------------------------------------------------------------- /src/content/blog/06-year-sorting-example/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/astro-micro/HEAD/src/content/blog/06-year-sorting-example/index.md -------------------------------------------------------------------------------- /src/content/blog/07-draft-example/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/astro-micro/HEAD/src/content/blog/07-draft-example/index.md -------------------------------------------------------------------------------- /src/content/blog/08-prev-next-order-example/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/astro-micro/HEAD/src/content/blog/08-prev-next-order-example/index.md -------------------------------------------------------------------------------- /src/content/projects/project-1/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/astro-micro/HEAD/src/content/projects/project-1/index.md -------------------------------------------------------------------------------- /src/content/projects/project-2/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/astro-micro/HEAD/src/content/projects/project-2/index.md -------------------------------------------------------------------------------- /src/content/projects/project-3/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/astro-micro/HEAD/src/content/projects/project-3/index.md -------------------------------------------------------------------------------- /src/layouts/Layout.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/astro-micro/HEAD/src/layouts/Layout.astro -------------------------------------------------------------------------------- /src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/astro-micro/HEAD/src/lib/utils.ts -------------------------------------------------------------------------------- /src/pages/404.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/astro-micro/HEAD/src/pages/404.astro -------------------------------------------------------------------------------- /src/pages/blog/[...id].astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/astro-micro/HEAD/src/pages/blog/[...id].astro -------------------------------------------------------------------------------- /src/pages/blog/index.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/astro-micro/HEAD/src/pages/blog/index.astro -------------------------------------------------------------------------------- /src/pages/index.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/astro-micro/HEAD/src/pages/index.astro -------------------------------------------------------------------------------- /src/pages/projects/[...id].astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/astro-micro/HEAD/src/pages/projects/[...id].astro -------------------------------------------------------------------------------- /src/pages/projects/index.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/astro-micro/HEAD/src/pages/projects/index.astro -------------------------------------------------------------------------------- /src/pages/rss.xml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/astro-micro/HEAD/src/pages/rss.xml.js -------------------------------------------------------------------------------- /src/pages/tags/[...id].astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/astro-micro/HEAD/src/pages/tags/[...id].astro -------------------------------------------------------------------------------- /src/pages/tags/index.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/astro-micro/HEAD/src/pages/tags/index.astro -------------------------------------------------------------------------------- /src/styles/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/astro-micro/HEAD/src/styles/global.css -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/astro-micro/HEAD/src/types.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trevortylerlee/astro-micro/HEAD/tsconfig.json --------------------------------------------------------------------------------