A minimal, responsive and SEO-friendly Astro blog theme.

AstroPaper is a minimal, responsive, accessible and SEO-friendly Astro blog theme. This theme is designed and crafted based on my personal blog.
Read the blog posts or check the README Documentation Section for more info.
Note: I've tested screen-reader accessibility of AstroPaper using VoiceOver on Mac and TalkBack on Android. I couldn't test all other screen-readers out there. However, accessibility enhancements in AstroPaper should be working fine on others as well.
Inside of AstroPaper, you'll see the following folders and files:
/βββ public/β βββ pagefind/ # auto-generated on buildβ βββ favicon.svgβ βββ default-og.jpgβββ src/β βββ assets/β β βββ icons/β β βββ images/β βββ components/β βββ content/β β βββ pages/β β β βββ about.mdβ β βββ posts/β β βββ some-blog-posts.mdβ βββ i18n/β βββ layouts/β βββ pages/β βββ scripts/β βββ styles/β βββ types/β βββ utils/β βββ config.tsβ βββ content.config.tsβββ astro-paper.config.ts # user-defined configurationsβββ astro.config.ts
All blog posts are stored in the src/content/posts/ directory. You can organise posts into subdirectories β the subdirectory name becomes part of the post URL.
Documentation can be read in two formats_ markdown & blog post.
Main Framework - Astro
Type Checking - TypeScript
Styling - TailwindCSS
UI/UX - Figma Design File
Static Search - Pagefind
Icons - Tablers
Code Formatting - Prettier
Deployment - Cloudflare Pages
Linting - ESLint
Dynamic OG images - Satori + Sharp + Astro Fonts
You can start using this project locally by running the following command in your desired directory:
# pnpmpnpm create astro@latest --template satnaing/astro-paper# npmnpm create astro@latest -- --template satnaing/astro-paper# yarnyarn create astro --template satnaing/astro-paper# bunbun create astro@latest -- --template satnaing/astro-paper
Then start the project by running the following commands:
# install dependencies if you haven't done so in the previous step.pnpm install# start running the projectpnpm dev
You can add your Google Site Verification HTML tag by setting site.googleVerification in astro-paper.config.ts:
export default defineAstroPaperConfig({site: {// ...googleVerification: "your-google-site-verification-value",},// ...});
See this discussion for adding AstroPaper to the Google Search Console.
All commands are run from the root of the project, from a terminal:
| Command | Action |
|---|---|
pnpm install | Installs dependencies |
pnpm dev | Starts local dev server at localhost:4321 |
pnpm build | Type-checks, builds the site, runs Pagefind indexing, and copies the index to public/pagefind/ |
pnpm preview | Preview your build locally, before deploying |
pnpm sync | Generates TypeScript types for all Astro modules. Learn more. |
pnpm astro ... | Run CLI commands like astro add, astro check |
If you have any suggestions/feedback, you can contact me via my email. Alternatively, feel free to open an issue if you find bugs or want to request new features.
Licensed under the MIT License, Copyright Β© 2026
Made with π€ by Sat Naing π¨π»βπ» and contributors.