├── .gitignore ├── LICENSE ├── README.md ├── astro.config.mjs ├── ec.config.mjs ├── package.json ├── plugins ├── index.ts ├── rehype-image-lazyload │ ├── image-lazyload.js │ └── index.ts └── remark-directive-widgets │ └── index.ts ├── pnpm-lock.yaml ├── posts ├── antares-doc.mdx ├── encrypted-post.md ├── first-post.md ├── markdown-style-guide.md ├── markmap-example.md ├── remark-directive-widgets.md ├── second-post.md ├── third-post.md └── using-mdx.mdx ├── public ├── blog-placeholder-about.jpg └── favicon.svg ├── src ├── assets │ ├── astro.svg │ └── background.svg ├── components │ ├── AsideCards │ │ ├── CardBase.astro │ │ ├── CardCategroies.astro │ │ ├── CardInfo.astro │ │ ├── CardMarkdown.astro │ │ ├── CardRecentPost.astro │ │ ├── CardSiteInfo.astro │ │ ├── CardTableOfContents.astro │ │ ├── CardTagCloud.astro │ │ ├── CardToolbar.astro │ │ └── index.ts │ ├── NavBar.astro │ ├── PostCard.astro │ ├── PostListSimple.astro │ ├── PostMeta.astro │ ├── SideBar.astro │ ├── atomic │ │ ├── If.astro │ │ └── Markdown.astro │ ├── fragment │ │ ├── FooterFragment.astro │ │ └── HeadFragment.astro │ └── widget │ │ ├── ChevronBtn.astro │ │ ├── Drawer.astro │ │ ├── InputPassword.astro │ │ ├── LinkCard.astro │ │ ├── PageNav.astro │ │ ├── ShieldsBadge.astro │ │ ├── ThemeIcon.astro │ │ ├── TitleHuge.astro │ │ └── TitleIcon.astro ├── config.links.ts ├── config.ts ├── content.config.ts ├── content │ └── posts.ts ├── icons │ ├── astro.svg │ ├── feather.svg │ └── markdown.svg ├── layouts │ ├── BaseLayout.astro │ └── PageLayout.astro ├── pages │ ├── 404.astro │ ├── about.mdx │ ├── archives.mdx │ ├── atom.xml.ts │ ├── baidusitemap.xml.ts │ ├── categories │ │ ├── [...category].astro │ │ └── index.astro │ ├── index.astro │ ├── links.astro │ ├── page │ │ └── [page].astro │ ├── posts │ │ └── [...slug].astro │ ├── rss.xml.ts │ ├── search.astro │ └── tags │ │ ├── [tag].astro │ │ └── index.astro ├── styles │ ├── cursor.css │ ├── expressive-code.scss │ ├── global.scss │ ├── markdown-mini.scss │ ├── markdown-standard.scss │ ├── remark-directive-widgets.scss │ └── uno-theme-vars.ts └── utils │ ├── color.ts │ ├── crypt-aes256cbc.ts │ ├── index.ts │ ├── markdown.ts │ └── toc.ts ├── tsconfig.json └── uno.config.ts /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderxi1/astro-antares/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderxi1/astro-antares/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderxi1/astro-antares/HEAD/README.md -------------------------------------------------------------------------------- /astro.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderxi1/astro-antares/HEAD/astro.config.mjs -------------------------------------------------------------------------------- /ec.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderxi1/astro-antares/HEAD/ec.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderxi1/astro-antares/HEAD/package.json -------------------------------------------------------------------------------- /plugins/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderxi1/astro-antares/HEAD/plugins/index.ts -------------------------------------------------------------------------------- /plugins/rehype-image-lazyload/image-lazyload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderxi1/astro-antares/HEAD/plugins/rehype-image-lazyload/image-lazyload.js -------------------------------------------------------------------------------- /plugins/rehype-image-lazyload/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderxi1/astro-antares/HEAD/plugins/rehype-image-lazyload/index.ts -------------------------------------------------------------------------------- /plugins/remark-directive-widgets/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderxi1/astro-antares/HEAD/plugins/remark-directive-widgets/index.ts -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderxi1/astro-antares/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /posts/antares-doc.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderxi1/astro-antares/HEAD/posts/antares-doc.mdx -------------------------------------------------------------------------------- /posts/encrypted-post.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderxi1/astro-antares/HEAD/posts/encrypted-post.md -------------------------------------------------------------------------------- /posts/first-post.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderxi1/astro-antares/HEAD/posts/first-post.md -------------------------------------------------------------------------------- /posts/markdown-style-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderxi1/astro-antares/HEAD/posts/markdown-style-guide.md -------------------------------------------------------------------------------- /posts/markmap-example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderxi1/astro-antares/HEAD/posts/markmap-example.md -------------------------------------------------------------------------------- /posts/remark-directive-widgets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderxi1/astro-antares/HEAD/posts/remark-directive-widgets.md -------------------------------------------------------------------------------- /posts/second-post.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderxi1/astro-antares/HEAD/posts/second-post.md -------------------------------------------------------------------------------- /posts/third-post.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderxi1/astro-antares/HEAD/posts/third-post.md -------------------------------------------------------------------------------- /posts/using-mdx.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderxi1/astro-antares/HEAD/posts/using-mdx.mdx -------------------------------------------------------------------------------- /public/blog-placeholder-about.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderxi1/astro-antares/HEAD/public/blog-placeholder-about.jpg -------------------------------------------------------------------------------- /public/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderxi1/astro-antares/HEAD/public/favicon.svg -------------------------------------------------------------------------------- /src/assets/astro.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderxi1/astro-antares/HEAD/src/assets/astro.svg -------------------------------------------------------------------------------- /src/assets/background.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderxi1/astro-antares/HEAD/src/assets/background.svg -------------------------------------------------------------------------------- /src/components/AsideCards/CardBase.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderxi1/astro-antares/HEAD/src/components/AsideCards/CardBase.astro -------------------------------------------------------------------------------- /src/components/AsideCards/CardCategroies.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderxi1/astro-antares/HEAD/src/components/AsideCards/CardCategroies.astro -------------------------------------------------------------------------------- /src/components/AsideCards/CardInfo.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderxi1/astro-antares/HEAD/src/components/AsideCards/CardInfo.astro -------------------------------------------------------------------------------- /src/components/AsideCards/CardMarkdown.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderxi1/astro-antares/HEAD/src/components/AsideCards/CardMarkdown.astro -------------------------------------------------------------------------------- /src/components/AsideCards/CardRecentPost.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderxi1/astro-antares/HEAD/src/components/AsideCards/CardRecentPost.astro -------------------------------------------------------------------------------- /src/components/AsideCards/CardSiteInfo.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderxi1/astro-antares/HEAD/src/components/AsideCards/CardSiteInfo.astro -------------------------------------------------------------------------------- /src/components/AsideCards/CardTableOfContents.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderxi1/astro-antares/HEAD/src/components/AsideCards/CardTableOfContents.astro -------------------------------------------------------------------------------- /src/components/AsideCards/CardTagCloud.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderxi1/astro-antares/HEAD/src/components/AsideCards/CardTagCloud.astro -------------------------------------------------------------------------------- /src/components/AsideCards/CardToolbar.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderxi1/astro-antares/HEAD/src/components/AsideCards/CardToolbar.astro -------------------------------------------------------------------------------- /src/components/AsideCards/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderxi1/astro-antares/HEAD/src/components/AsideCards/index.ts -------------------------------------------------------------------------------- /src/components/NavBar.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderxi1/astro-antares/HEAD/src/components/NavBar.astro -------------------------------------------------------------------------------- /src/components/PostCard.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderxi1/astro-antares/HEAD/src/components/PostCard.astro -------------------------------------------------------------------------------- /src/components/PostListSimple.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderxi1/astro-antares/HEAD/src/components/PostListSimple.astro -------------------------------------------------------------------------------- /src/components/PostMeta.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderxi1/astro-antares/HEAD/src/components/PostMeta.astro -------------------------------------------------------------------------------- /src/components/SideBar.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderxi1/astro-antares/HEAD/src/components/SideBar.astro -------------------------------------------------------------------------------- /src/components/atomic/If.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderxi1/astro-antares/HEAD/src/components/atomic/If.astro -------------------------------------------------------------------------------- /src/components/atomic/Markdown.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderxi1/astro-antares/HEAD/src/components/atomic/Markdown.astro -------------------------------------------------------------------------------- /src/components/fragment/FooterFragment.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderxi1/astro-antares/HEAD/src/components/fragment/FooterFragment.astro -------------------------------------------------------------------------------- /src/components/fragment/HeadFragment.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderxi1/astro-antares/HEAD/src/components/fragment/HeadFragment.astro -------------------------------------------------------------------------------- /src/components/widget/ChevronBtn.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderxi1/astro-antares/HEAD/src/components/widget/ChevronBtn.astro -------------------------------------------------------------------------------- /src/components/widget/Drawer.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderxi1/astro-antares/HEAD/src/components/widget/Drawer.astro -------------------------------------------------------------------------------- /src/components/widget/InputPassword.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderxi1/astro-antares/HEAD/src/components/widget/InputPassword.astro -------------------------------------------------------------------------------- /src/components/widget/LinkCard.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderxi1/astro-antares/HEAD/src/components/widget/LinkCard.astro -------------------------------------------------------------------------------- /src/components/widget/PageNav.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderxi1/astro-antares/HEAD/src/components/widget/PageNav.astro -------------------------------------------------------------------------------- /src/components/widget/ShieldsBadge.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderxi1/astro-antares/HEAD/src/components/widget/ShieldsBadge.astro -------------------------------------------------------------------------------- /src/components/widget/ThemeIcon.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderxi1/astro-antares/HEAD/src/components/widget/ThemeIcon.astro -------------------------------------------------------------------------------- /src/components/widget/TitleHuge.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderxi1/astro-antares/HEAD/src/components/widget/TitleHuge.astro -------------------------------------------------------------------------------- /src/components/widget/TitleIcon.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderxi1/astro-antares/HEAD/src/components/widget/TitleIcon.astro -------------------------------------------------------------------------------- /src/config.links.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderxi1/astro-antares/HEAD/src/config.links.ts -------------------------------------------------------------------------------- /src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderxi1/astro-antares/HEAD/src/config.ts -------------------------------------------------------------------------------- /src/content.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderxi1/astro-antares/HEAD/src/content.config.ts -------------------------------------------------------------------------------- /src/content/posts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderxi1/astro-antares/HEAD/src/content/posts.ts -------------------------------------------------------------------------------- /src/icons/astro.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderxi1/astro-antares/HEAD/src/icons/astro.svg -------------------------------------------------------------------------------- /src/icons/feather.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderxi1/astro-antares/HEAD/src/icons/feather.svg -------------------------------------------------------------------------------- /src/icons/markdown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderxi1/astro-antares/HEAD/src/icons/markdown.svg -------------------------------------------------------------------------------- /src/layouts/BaseLayout.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderxi1/astro-antares/HEAD/src/layouts/BaseLayout.astro -------------------------------------------------------------------------------- /src/layouts/PageLayout.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderxi1/astro-antares/HEAD/src/layouts/PageLayout.astro -------------------------------------------------------------------------------- /src/pages/404.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderxi1/astro-antares/HEAD/src/pages/404.astro -------------------------------------------------------------------------------- /src/pages/about.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderxi1/astro-antares/HEAD/src/pages/about.mdx -------------------------------------------------------------------------------- /src/pages/archives.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderxi1/astro-antares/HEAD/src/pages/archives.mdx -------------------------------------------------------------------------------- /src/pages/atom.xml.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderxi1/astro-antares/HEAD/src/pages/atom.xml.ts -------------------------------------------------------------------------------- /src/pages/baidusitemap.xml.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderxi1/astro-antares/HEAD/src/pages/baidusitemap.xml.ts -------------------------------------------------------------------------------- /src/pages/categories/[...category].astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderxi1/astro-antares/HEAD/src/pages/categories/[...category].astro -------------------------------------------------------------------------------- /src/pages/categories/index.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderxi1/astro-antares/HEAD/src/pages/categories/index.astro -------------------------------------------------------------------------------- /src/pages/index.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderxi1/astro-antares/HEAD/src/pages/index.astro -------------------------------------------------------------------------------- /src/pages/links.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderxi1/astro-antares/HEAD/src/pages/links.astro -------------------------------------------------------------------------------- /src/pages/page/[page].astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderxi1/astro-antares/HEAD/src/pages/page/[page].astro -------------------------------------------------------------------------------- /src/pages/posts/[...slug].astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderxi1/astro-antares/HEAD/src/pages/posts/[...slug].astro -------------------------------------------------------------------------------- /src/pages/rss.xml.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderxi1/astro-antares/HEAD/src/pages/rss.xml.ts -------------------------------------------------------------------------------- /src/pages/search.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderxi1/astro-antares/HEAD/src/pages/search.astro -------------------------------------------------------------------------------- /src/pages/tags/[tag].astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderxi1/astro-antares/HEAD/src/pages/tags/[tag].astro -------------------------------------------------------------------------------- /src/pages/tags/index.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderxi1/astro-antares/HEAD/src/pages/tags/index.astro -------------------------------------------------------------------------------- /src/styles/cursor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderxi1/astro-antares/HEAD/src/styles/cursor.css -------------------------------------------------------------------------------- /src/styles/expressive-code.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderxi1/astro-antares/HEAD/src/styles/expressive-code.scss -------------------------------------------------------------------------------- /src/styles/global.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderxi1/astro-antares/HEAD/src/styles/global.scss -------------------------------------------------------------------------------- /src/styles/markdown-mini.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderxi1/astro-antares/HEAD/src/styles/markdown-mini.scss -------------------------------------------------------------------------------- /src/styles/markdown-standard.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderxi1/astro-antares/HEAD/src/styles/markdown-standard.scss -------------------------------------------------------------------------------- /src/styles/remark-directive-widgets.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderxi1/astro-antares/HEAD/src/styles/remark-directive-widgets.scss -------------------------------------------------------------------------------- /src/styles/uno-theme-vars.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderxi1/astro-antares/HEAD/src/styles/uno-theme-vars.ts -------------------------------------------------------------------------------- /src/utils/color.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderxi1/astro-antares/HEAD/src/utils/color.ts -------------------------------------------------------------------------------- /src/utils/crypt-aes256cbc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderxi1/astro-antares/HEAD/src/utils/crypt-aes256cbc.ts -------------------------------------------------------------------------------- /src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderxi1/astro-antares/HEAD/src/utils/index.ts -------------------------------------------------------------------------------- /src/utils/markdown.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderxi1/astro-antares/HEAD/src/utils/markdown.ts -------------------------------------------------------------------------------- /src/utils/toc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderxi1/astro-antares/HEAD/src/utils/toc.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderxi1/astro-antares/HEAD/tsconfig.json -------------------------------------------------------------------------------- /uno.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coderxi1/astro-antares/HEAD/uno.config.ts --------------------------------------------------------------------------------