Theme Jane for Astro
Jane is a simple, clean, and responsive theme for Astro. It's perfect for personal blogs, portfolios, and other content-focused websites. This theme is based on the Jane theme for Hugo.
🎒 Features
- MD and MDX support
- Tags (categories) support
- Pagination
- Table of contents
🚀 Project Structure
Inside of your Astro project, you'll see the following folders and files:
/ ├── 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