Astro 的 Jane 主题
Jane 是一个简洁、干净且响应迅速的 Astro 主题。它非常适合个人博客、作品集以及其他以内容为重点的网站。此主题基于 Hugo 的 Jane 主题。
🎒 功能
- 支持 MD 和 MDX
- 支持标签(分类)
- 分页
- 目录
🚀 项目结构
在您的 Astro 项目中,您将看到以下文件夹和文件
/ ├── astro.config.mjs ├── backup │ └── posts │ ├── first-post.md │ ├── markdown-style-guide.md │ ├── second-post.md │ ├── third-post.md │ ├── using-mdx.mdx │ └── welcome-to-jane.md ├── markdown.config.js ├── package-lock.json ├── package.json ├── public │ └── favicon.svg ├── src │ ├── components │ │ ├── Block.astro │ │ ├── Card.astro │ │ ├── Navigation.astro │ │ ├── Pagination.astro │ │ ├── Post.astro │ │ └── TableOfContents.astro │ ├── content │ │ └── posts │ │ ├── first-post.md │ │ ├── markdown-style-guide.md │ │ ├── second-post.md │ │ ├── third-post.md │ │ ├── using-mdx.mdx │ │ └── welcome-to-jane.md │ ├── env.d.ts │ ├── layouts │ │ └── Layout.astro │ ├── pages │ │ ├── archive │ │ │ └── index.astro │ │ ├── blog │ │ │ ├── [...slug].astro │ │ │ └── [page].astro │ │ ├── index.astro │ │ └── tags │ │ ├── [...tag].astro │ │ └── index.astro │ └── utils │ └── format-date.ts ├── tailwind.config.mjs └── tsconfig.json