Skip to content
AstroPaper
Go back

文档结构

Edit page

###文档结构

src/
├── pages/                    ← ✅ 主頁在這裡!
│   ├── index.astro          ← 網站首頁
│   ├── posts/
│   │   └── [...page].astro  ← 博客列表頁
│   └── about.md            ← 關於頁面
└── data/
    └── blog/               ← ✅ 純資料,沒有頁面!
        ├── 2026-03-16-first-post.md
        └── other-post.md

详细说明

位置作用URL
src/pages/index.astro網站首頁/
src/pages/posts/[…page].astro博客列表/posts/、/posts/2/
src/data/blog/*.md文章內容(資料)無對應頁面
src/pages/posts/[…slug]/index.astro單篇文章/posts/2026-03-16-first-post/

Edit page
Share this post on:

Next Post
文章標題