├── .gitignore ├── .npmrc ├── .vscode ├── extensions.json └── launch.json ├── LICENSE ├── README.md ├── astro.config.mjs ├── package.json ├── postcss.config.cjs ├── public ├── favicon.ico └── images │ ├── Screenshot.jpg │ ├── postWithImageFromFile.jpg │ ├── sarissa.png │ └── theme.jpg ├── sandbox.config.json ├── src ├── components │ ├── CategoryButton.astro │ ├── CategoryCard.astro │ ├── Footer.astro │ ├── Head.astro │ ├── MobileNavbar.astro │ ├── Pagination.astro │ ├── PostPreviewCard.astro │ ├── PostPreviewRow.astro │ ├── Sidebar.astro │ ├── SiteImage.astro │ ├── SocialMedia.astro │ ├── ThemeSwitcher.astro │ └── YearSelectBox.astro ├── layouts │ ├── BaseLayout.astro │ ├── PageLayout.astro │ └── PostLayout.astro ├── pages │ ├── about.astro │ ├── archive.astro │ ├── archive │ │ └── [year] │ │ │ └── [page].astro │ ├── categories.astro │ ├── category │ │ └── [category] │ │ │ └── [page].astro │ ├── index.astro │ ├── post │ │ ├── draftPost.md │ │ ├── postwithimage copy.md │ │ ├── postwithimage.md │ │ ├── postwithimagefromfile copy.md │ │ ├── postwithimagefromfile.md │ │ ├── postwithoutimage copy.md │ │ └── postwithoutimage.md │ ├── posts │ │ └── [page].astro │ ├── search.astro │ └── searchindex.json.js ├── sarissa.config.cjs └── sarissaUtils.js ├── tailwind.config.cjs ├── target └── npmlist.json └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iozcelik/SarissaBlogAstroStarter/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | # Expose Astro dependencies for `pnpm` users 2 | shamefully-hoist=true 3 | -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iozcelik/SarissaBlogAstroStarter/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iozcelik/SarissaBlogAstroStarter/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iozcelik/SarissaBlogAstroStarter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iozcelik/SarissaBlogAstroStarter/HEAD/README.md -------------------------------------------------------------------------------- /astro.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iozcelik/SarissaBlogAstroStarter/HEAD/astro.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iozcelik/SarissaBlogAstroStarter/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iozcelik/SarissaBlogAstroStarter/HEAD/postcss.config.cjs -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iozcelik/SarissaBlogAstroStarter/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/images/Screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iozcelik/SarissaBlogAstroStarter/HEAD/public/images/Screenshot.jpg -------------------------------------------------------------------------------- /public/images/postWithImageFromFile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iozcelik/SarissaBlogAstroStarter/HEAD/public/images/postWithImageFromFile.jpg -------------------------------------------------------------------------------- /public/images/sarissa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iozcelik/SarissaBlogAstroStarter/HEAD/public/images/sarissa.png -------------------------------------------------------------------------------- /public/images/theme.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iozcelik/SarissaBlogAstroStarter/HEAD/public/images/theme.jpg -------------------------------------------------------------------------------- /sandbox.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iozcelik/SarissaBlogAstroStarter/HEAD/sandbox.config.json -------------------------------------------------------------------------------- /src/components/CategoryButton.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iozcelik/SarissaBlogAstroStarter/HEAD/src/components/CategoryButton.astro -------------------------------------------------------------------------------- /src/components/CategoryCard.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iozcelik/SarissaBlogAstroStarter/HEAD/src/components/CategoryCard.astro -------------------------------------------------------------------------------- /src/components/Footer.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iozcelik/SarissaBlogAstroStarter/HEAD/src/components/Footer.astro -------------------------------------------------------------------------------- /src/components/Head.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iozcelik/SarissaBlogAstroStarter/HEAD/src/components/Head.astro -------------------------------------------------------------------------------- /src/components/MobileNavbar.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iozcelik/SarissaBlogAstroStarter/HEAD/src/components/MobileNavbar.astro -------------------------------------------------------------------------------- /src/components/Pagination.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iozcelik/SarissaBlogAstroStarter/HEAD/src/components/Pagination.astro -------------------------------------------------------------------------------- /src/components/PostPreviewCard.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iozcelik/SarissaBlogAstroStarter/HEAD/src/components/PostPreviewCard.astro -------------------------------------------------------------------------------- /src/components/PostPreviewRow.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iozcelik/SarissaBlogAstroStarter/HEAD/src/components/PostPreviewRow.astro -------------------------------------------------------------------------------- /src/components/Sidebar.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iozcelik/SarissaBlogAstroStarter/HEAD/src/components/Sidebar.astro -------------------------------------------------------------------------------- /src/components/SiteImage.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iozcelik/SarissaBlogAstroStarter/HEAD/src/components/SiteImage.astro -------------------------------------------------------------------------------- /src/components/SocialMedia.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iozcelik/SarissaBlogAstroStarter/HEAD/src/components/SocialMedia.astro -------------------------------------------------------------------------------- /src/components/ThemeSwitcher.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iozcelik/SarissaBlogAstroStarter/HEAD/src/components/ThemeSwitcher.astro -------------------------------------------------------------------------------- /src/components/YearSelectBox.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iozcelik/SarissaBlogAstroStarter/HEAD/src/components/YearSelectBox.astro -------------------------------------------------------------------------------- /src/layouts/BaseLayout.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iozcelik/SarissaBlogAstroStarter/HEAD/src/layouts/BaseLayout.astro -------------------------------------------------------------------------------- /src/layouts/PageLayout.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iozcelik/SarissaBlogAstroStarter/HEAD/src/layouts/PageLayout.astro -------------------------------------------------------------------------------- /src/layouts/PostLayout.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iozcelik/SarissaBlogAstroStarter/HEAD/src/layouts/PostLayout.astro -------------------------------------------------------------------------------- /src/pages/about.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iozcelik/SarissaBlogAstroStarter/HEAD/src/pages/about.astro -------------------------------------------------------------------------------- /src/pages/archive.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iozcelik/SarissaBlogAstroStarter/HEAD/src/pages/archive.astro -------------------------------------------------------------------------------- /src/pages/archive/[year]/[page].astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iozcelik/SarissaBlogAstroStarter/HEAD/src/pages/archive/[year]/[page].astro -------------------------------------------------------------------------------- /src/pages/categories.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iozcelik/SarissaBlogAstroStarter/HEAD/src/pages/categories.astro -------------------------------------------------------------------------------- /src/pages/category/[category]/[page].astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iozcelik/SarissaBlogAstroStarter/HEAD/src/pages/category/[category]/[page].astro -------------------------------------------------------------------------------- /src/pages/index.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iozcelik/SarissaBlogAstroStarter/HEAD/src/pages/index.astro -------------------------------------------------------------------------------- /src/pages/post/draftPost.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iozcelik/SarissaBlogAstroStarter/HEAD/src/pages/post/draftPost.md -------------------------------------------------------------------------------- /src/pages/post/postwithimage copy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iozcelik/SarissaBlogAstroStarter/HEAD/src/pages/post/postwithimage copy.md -------------------------------------------------------------------------------- /src/pages/post/postwithimage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iozcelik/SarissaBlogAstroStarter/HEAD/src/pages/post/postwithimage.md -------------------------------------------------------------------------------- /src/pages/post/postwithimagefromfile copy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iozcelik/SarissaBlogAstroStarter/HEAD/src/pages/post/postwithimagefromfile copy.md -------------------------------------------------------------------------------- /src/pages/post/postwithimagefromfile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iozcelik/SarissaBlogAstroStarter/HEAD/src/pages/post/postwithimagefromfile.md -------------------------------------------------------------------------------- /src/pages/post/postwithoutimage copy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iozcelik/SarissaBlogAstroStarter/HEAD/src/pages/post/postwithoutimage copy.md -------------------------------------------------------------------------------- /src/pages/post/postwithoutimage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iozcelik/SarissaBlogAstroStarter/HEAD/src/pages/post/postwithoutimage.md -------------------------------------------------------------------------------- /src/pages/posts/[page].astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iozcelik/SarissaBlogAstroStarter/HEAD/src/pages/posts/[page].astro -------------------------------------------------------------------------------- /src/pages/search.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iozcelik/SarissaBlogAstroStarter/HEAD/src/pages/search.astro -------------------------------------------------------------------------------- /src/pages/searchindex.json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iozcelik/SarissaBlogAstroStarter/HEAD/src/pages/searchindex.json.js -------------------------------------------------------------------------------- /src/sarissa.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iozcelik/SarissaBlogAstroStarter/HEAD/src/sarissa.config.cjs -------------------------------------------------------------------------------- /src/sarissaUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iozcelik/SarissaBlogAstroStarter/HEAD/src/sarissaUtils.js -------------------------------------------------------------------------------- /tailwind.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iozcelik/SarissaBlogAstroStarter/HEAD/tailwind.config.cjs -------------------------------------------------------------------------------- /target/npmlist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iozcelik/SarissaBlogAstroStarter/HEAD/target/npmlist.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iozcelik/SarissaBlogAstroStarter/HEAD/tsconfig.json --------------------------------------------------------------------------------