235 字
1 分钟
Fuwari 简易使用指南

封面图片来源:原图链接

这个博客模板基于 Astro 构建。对于本指南未涉及的内容,你可以在 Astro 文档 中找到答案。

文章的 Front-matter#

---
title: My First Blog Post
published: 2023-09-09
description: This is the first post of my new Astro blog.
image: ./cover.jpg
tags: [Foo, Bar]
category: Front-end
draft: false
---
属性说明
title文章标题。
published文章发布日期。
description文章的简短描述,显示在首页列表中。
image文章封面图片路径。
1. 以 http://https:// 开头:使用网络图片
2. 以 / 开头:使用 public 目录下的图片
3. 其他情况:相对于当前 Markdown 文件的路径
tags文章标签。
category文章分类。
draft若为草稿状态则不会显示。

文章文件的存放位置#

你的文章文件应放置在 src/content/posts/ 目录下。你也可以创建子目录来更好地组织文章和相关资源。

src/content/posts/
├── post-1.md
└── post-2/
    ├── cover.png
    └── index.md
Fuwari 简易使用指南
https://fuwari.vercel.app/posts/guide/
作者
Kellen
发布于
2025-04-01
许可协议
CC BY-NC-SA 4.0