├── .gitignore ├── .prettierrc ├── .vscode ├── extensions.json ├── launch.json └── settings.json ├── LICENSE ├── README.md ├── astro.config.mjs ├── package.json ├── public ├── dante-preview.jpg ├── favicon.svg └── theme-toggle.js ├── src ├── assets │ ├── icons │ │ ├── arrow-left.svg │ │ └── arrow-right.svg │ └── images │ │ ├── about.jpg │ │ ├── avatar.jpg │ │ ├── hero.jpg │ │ ├── post-1.jpg │ │ ├── post-10.jpg │ │ ├── post-11.jpg │ │ ├── post-12.jpg │ │ ├── post-13.jpg │ │ ├── post-14.jpg │ │ ├── post-2.jpg │ │ ├── post-3.jpg │ │ ├── post-4.jpg │ │ ├── post-5.jpg │ │ ├── post-6.jpg │ │ ├── post-7.jpg │ │ ├── post-8.jpg │ │ ├── post-9.jpg │ │ ├── project-1.jpg │ │ ├── project-2.jpg │ │ ├── project-3.jpg │ │ ├── project-4.jpg │ │ ├── project-5.jpg │ │ ├── project-6.jpg │ │ └── project-7.jpg ├── components │ ├── BaseHead.astro │ ├── Button.astro │ ├── CustomImage.astro │ ├── Footer.astro │ ├── FormattedDate.astro │ ├── Header.astro │ ├── Hero.astro │ ├── IconButton.astro │ ├── Nav.astro │ ├── NavLink.astro │ ├── Pagination.astro │ ├── PostPreview.astro │ ├── ProjectPreview.astro │ ├── Subscribe.astro │ └── ThemeToggle.astro ├── content.config.ts ├── content │ ├── blog │ │ ├── post-1.md │ │ ├── post-10.md │ │ ├── post-11.md │ │ ├── post-12.md │ │ ├── post-13.md │ │ ├── post-14.md │ │ ├── post-2.md │ │ ├── post-3.md │ │ ├── post-4.md │ │ ├── post-5.md │ │ ├── post-6.md │ │ ├── post-7.md │ │ ├── post-8.md │ │ └── post-9.md │ ├── pages │ │ ├── about.md │ │ ├── contact.md │ │ └── terms.md │ └── projects │ │ ├── project-1.md │ │ ├── project-2.md │ │ ├── project-3.md │ │ ├── project-4.md │ │ ├── project-5.md │ │ ├── project-6.md │ │ └── project-7.md ├── data │ └── site-config.ts ├── layouts │ └── BaseLayout.astro ├── pages │ ├── [...id].astro │ ├── blog │ │ ├── [...page].astro │ │ └── [id].astro │ ├── index.astro │ ├── projects │ │ ├── [...page].astro │ │ └── [id].astro │ ├── rss.xml.js │ └── tags │ │ ├── [id] │ │ └── [...page].astro │ │ └── index.astro ├── styles │ └── global.css ├── types.ts └── utils │ ├── common-utils.ts │ └── data-utils.ts └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustGoodUI/dante-astro-theme/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustGoodUI/dante-astro-theme/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustGoodUI/dante-astro-theme/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustGoodUI/dante-astro-theme/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustGoodUI/dante-astro-theme/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustGoodUI/dante-astro-theme/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustGoodUI/dante-astro-theme/HEAD/README.md -------------------------------------------------------------------------------- /astro.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustGoodUI/dante-astro-theme/HEAD/astro.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustGoodUI/dante-astro-theme/HEAD/package.json -------------------------------------------------------------------------------- /public/dante-preview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustGoodUI/dante-astro-theme/HEAD/public/dante-preview.jpg -------------------------------------------------------------------------------- /public/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustGoodUI/dante-astro-theme/HEAD/public/favicon.svg -------------------------------------------------------------------------------- /public/theme-toggle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustGoodUI/dante-astro-theme/HEAD/public/theme-toggle.js -------------------------------------------------------------------------------- /src/assets/icons/arrow-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustGoodUI/dante-astro-theme/HEAD/src/assets/icons/arrow-left.svg -------------------------------------------------------------------------------- /src/assets/icons/arrow-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustGoodUI/dante-astro-theme/HEAD/src/assets/icons/arrow-right.svg -------------------------------------------------------------------------------- /src/assets/images/about.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustGoodUI/dante-astro-theme/HEAD/src/assets/images/about.jpg -------------------------------------------------------------------------------- /src/assets/images/avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustGoodUI/dante-astro-theme/HEAD/src/assets/images/avatar.jpg -------------------------------------------------------------------------------- /src/assets/images/hero.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustGoodUI/dante-astro-theme/HEAD/src/assets/images/hero.jpg -------------------------------------------------------------------------------- /src/assets/images/post-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustGoodUI/dante-astro-theme/HEAD/src/assets/images/post-1.jpg -------------------------------------------------------------------------------- /src/assets/images/post-10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustGoodUI/dante-astro-theme/HEAD/src/assets/images/post-10.jpg -------------------------------------------------------------------------------- /src/assets/images/post-11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustGoodUI/dante-astro-theme/HEAD/src/assets/images/post-11.jpg -------------------------------------------------------------------------------- /src/assets/images/post-12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustGoodUI/dante-astro-theme/HEAD/src/assets/images/post-12.jpg -------------------------------------------------------------------------------- /src/assets/images/post-13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustGoodUI/dante-astro-theme/HEAD/src/assets/images/post-13.jpg -------------------------------------------------------------------------------- /src/assets/images/post-14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustGoodUI/dante-astro-theme/HEAD/src/assets/images/post-14.jpg -------------------------------------------------------------------------------- /src/assets/images/post-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustGoodUI/dante-astro-theme/HEAD/src/assets/images/post-2.jpg -------------------------------------------------------------------------------- /src/assets/images/post-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustGoodUI/dante-astro-theme/HEAD/src/assets/images/post-3.jpg -------------------------------------------------------------------------------- /src/assets/images/post-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustGoodUI/dante-astro-theme/HEAD/src/assets/images/post-4.jpg -------------------------------------------------------------------------------- /src/assets/images/post-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustGoodUI/dante-astro-theme/HEAD/src/assets/images/post-5.jpg -------------------------------------------------------------------------------- /src/assets/images/post-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustGoodUI/dante-astro-theme/HEAD/src/assets/images/post-6.jpg -------------------------------------------------------------------------------- /src/assets/images/post-7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustGoodUI/dante-astro-theme/HEAD/src/assets/images/post-7.jpg -------------------------------------------------------------------------------- /src/assets/images/post-8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustGoodUI/dante-astro-theme/HEAD/src/assets/images/post-8.jpg -------------------------------------------------------------------------------- /src/assets/images/post-9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustGoodUI/dante-astro-theme/HEAD/src/assets/images/post-9.jpg -------------------------------------------------------------------------------- /src/assets/images/project-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustGoodUI/dante-astro-theme/HEAD/src/assets/images/project-1.jpg -------------------------------------------------------------------------------- /src/assets/images/project-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustGoodUI/dante-astro-theme/HEAD/src/assets/images/project-2.jpg -------------------------------------------------------------------------------- /src/assets/images/project-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustGoodUI/dante-astro-theme/HEAD/src/assets/images/project-3.jpg -------------------------------------------------------------------------------- /src/assets/images/project-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustGoodUI/dante-astro-theme/HEAD/src/assets/images/project-4.jpg -------------------------------------------------------------------------------- /src/assets/images/project-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustGoodUI/dante-astro-theme/HEAD/src/assets/images/project-5.jpg -------------------------------------------------------------------------------- /src/assets/images/project-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustGoodUI/dante-astro-theme/HEAD/src/assets/images/project-6.jpg -------------------------------------------------------------------------------- /src/assets/images/project-7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustGoodUI/dante-astro-theme/HEAD/src/assets/images/project-7.jpg -------------------------------------------------------------------------------- /src/components/BaseHead.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustGoodUI/dante-astro-theme/HEAD/src/components/BaseHead.astro -------------------------------------------------------------------------------- /src/components/Button.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustGoodUI/dante-astro-theme/HEAD/src/components/Button.astro -------------------------------------------------------------------------------- /src/components/CustomImage.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustGoodUI/dante-astro-theme/HEAD/src/components/CustomImage.astro -------------------------------------------------------------------------------- /src/components/Footer.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustGoodUI/dante-astro-theme/HEAD/src/components/Footer.astro -------------------------------------------------------------------------------- /src/components/FormattedDate.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustGoodUI/dante-astro-theme/HEAD/src/components/FormattedDate.astro -------------------------------------------------------------------------------- /src/components/Header.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustGoodUI/dante-astro-theme/HEAD/src/components/Header.astro -------------------------------------------------------------------------------- /src/components/Hero.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustGoodUI/dante-astro-theme/HEAD/src/components/Hero.astro -------------------------------------------------------------------------------- /src/components/IconButton.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustGoodUI/dante-astro-theme/HEAD/src/components/IconButton.astro -------------------------------------------------------------------------------- /src/components/Nav.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustGoodUI/dante-astro-theme/HEAD/src/components/Nav.astro -------------------------------------------------------------------------------- /src/components/NavLink.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustGoodUI/dante-astro-theme/HEAD/src/components/NavLink.astro -------------------------------------------------------------------------------- /src/components/Pagination.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustGoodUI/dante-astro-theme/HEAD/src/components/Pagination.astro -------------------------------------------------------------------------------- /src/components/PostPreview.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustGoodUI/dante-astro-theme/HEAD/src/components/PostPreview.astro -------------------------------------------------------------------------------- /src/components/ProjectPreview.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustGoodUI/dante-astro-theme/HEAD/src/components/ProjectPreview.astro -------------------------------------------------------------------------------- /src/components/Subscribe.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustGoodUI/dante-astro-theme/HEAD/src/components/Subscribe.astro -------------------------------------------------------------------------------- /src/components/ThemeToggle.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustGoodUI/dante-astro-theme/HEAD/src/components/ThemeToggle.astro -------------------------------------------------------------------------------- /src/content.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustGoodUI/dante-astro-theme/HEAD/src/content.config.ts -------------------------------------------------------------------------------- /src/content/blog/post-1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustGoodUI/dante-astro-theme/HEAD/src/content/blog/post-1.md -------------------------------------------------------------------------------- /src/content/blog/post-10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustGoodUI/dante-astro-theme/HEAD/src/content/blog/post-10.md -------------------------------------------------------------------------------- /src/content/blog/post-11.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustGoodUI/dante-astro-theme/HEAD/src/content/blog/post-11.md -------------------------------------------------------------------------------- /src/content/blog/post-12.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustGoodUI/dante-astro-theme/HEAD/src/content/blog/post-12.md -------------------------------------------------------------------------------- /src/content/blog/post-13.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustGoodUI/dante-astro-theme/HEAD/src/content/blog/post-13.md -------------------------------------------------------------------------------- /src/content/blog/post-14.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustGoodUI/dante-astro-theme/HEAD/src/content/blog/post-14.md -------------------------------------------------------------------------------- /src/content/blog/post-2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustGoodUI/dante-astro-theme/HEAD/src/content/blog/post-2.md -------------------------------------------------------------------------------- /src/content/blog/post-3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustGoodUI/dante-astro-theme/HEAD/src/content/blog/post-3.md -------------------------------------------------------------------------------- /src/content/blog/post-4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustGoodUI/dante-astro-theme/HEAD/src/content/blog/post-4.md -------------------------------------------------------------------------------- /src/content/blog/post-5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustGoodUI/dante-astro-theme/HEAD/src/content/blog/post-5.md -------------------------------------------------------------------------------- /src/content/blog/post-6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustGoodUI/dante-astro-theme/HEAD/src/content/blog/post-6.md -------------------------------------------------------------------------------- /src/content/blog/post-7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustGoodUI/dante-astro-theme/HEAD/src/content/blog/post-7.md -------------------------------------------------------------------------------- /src/content/blog/post-8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustGoodUI/dante-astro-theme/HEAD/src/content/blog/post-8.md -------------------------------------------------------------------------------- /src/content/blog/post-9.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustGoodUI/dante-astro-theme/HEAD/src/content/blog/post-9.md -------------------------------------------------------------------------------- /src/content/pages/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustGoodUI/dante-astro-theme/HEAD/src/content/pages/about.md -------------------------------------------------------------------------------- /src/content/pages/contact.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustGoodUI/dante-astro-theme/HEAD/src/content/pages/contact.md -------------------------------------------------------------------------------- /src/content/pages/terms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustGoodUI/dante-astro-theme/HEAD/src/content/pages/terms.md -------------------------------------------------------------------------------- /src/content/projects/project-1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustGoodUI/dante-astro-theme/HEAD/src/content/projects/project-1.md -------------------------------------------------------------------------------- /src/content/projects/project-2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustGoodUI/dante-astro-theme/HEAD/src/content/projects/project-2.md -------------------------------------------------------------------------------- /src/content/projects/project-3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustGoodUI/dante-astro-theme/HEAD/src/content/projects/project-3.md -------------------------------------------------------------------------------- /src/content/projects/project-4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustGoodUI/dante-astro-theme/HEAD/src/content/projects/project-4.md -------------------------------------------------------------------------------- /src/content/projects/project-5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustGoodUI/dante-astro-theme/HEAD/src/content/projects/project-5.md -------------------------------------------------------------------------------- /src/content/projects/project-6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustGoodUI/dante-astro-theme/HEAD/src/content/projects/project-6.md -------------------------------------------------------------------------------- /src/content/projects/project-7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustGoodUI/dante-astro-theme/HEAD/src/content/projects/project-7.md -------------------------------------------------------------------------------- /src/data/site-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustGoodUI/dante-astro-theme/HEAD/src/data/site-config.ts -------------------------------------------------------------------------------- /src/layouts/BaseLayout.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustGoodUI/dante-astro-theme/HEAD/src/layouts/BaseLayout.astro -------------------------------------------------------------------------------- /src/pages/[...id].astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustGoodUI/dante-astro-theme/HEAD/src/pages/[...id].astro -------------------------------------------------------------------------------- /src/pages/blog/[...page].astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustGoodUI/dante-astro-theme/HEAD/src/pages/blog/[...page].astro -------------------------------------------------------------------------------- /src/pages/blog/[id].astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustGoodUI/dante-astro-theme/HEAD/src/pages/blog/[id].astro -------------------------------------------------------------------------------- /src/pages/index.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustGoodUI/dante-astro-theme/HEAD/src/pages/index.astro -------------------------------------------------------------------------------- /src/pages/projects/[...page].astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustGoodUI/dante-astro-theme/HEAD/src/pages/projects/[...page].astro -------------------------------------------------------------------------------- /src/pages/projects/[id].astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustGoodUI/dante-astro-theme/HEAD/src/pages/projects/[id].astro -------------------------------------------------------------------------------- /src/pages/rss.xml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustGoodUI/dante-astro-theme/HEAD/src/pages/rss.xml.js -------------------------------------------------------------------------------- /src/pages/tags/[id]/[...page].astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustGoodUI/dante-astro-theme/HEAD/src/pages/tags/[id]/[...page].astro -------------------------------------------------------------------------------- /src/pages/tags/index.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustGoodUI/dante-astro-theme/HEAD/src/pages/tags/index.astro -------------------------------------------------------------------------------- /src/styles/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustGoodUI/dante-astro-theme/HEAD/src/styles/global.css -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustGoodUI/dante-astro-theme/HEAD/src/types.ts -------------------------------------------------------------------------------- /src/utils/common-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustGoodUI/dante-astro-theme/HEAD/src/utils/common-utils.ts -------------------------------------------------------------------------------- /src/utils/data-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustGoodUI/dante-astro-theme/HEAD/src/utils/data-utils.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustGoodUI/dante-astro-theme/HEAD/tsconfig.json --------------------------------------------------------------------------------