<?xml version="1.0" encoding="UTF-8"?><rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/"><channel><title>Ray</title><description>Mond</description><link>https://fuwari.vercel.app/</link><language>zh_CN</language><item><title>博客建设中</title><link>https://fuwari.vercel.app/posts/%E5%BB%BA%E8%AE%BE%E4%B8%AD/</link><guid isPermaLink="true">https://fuwari.vercel.app/posts/%E5%BB%BA%E8%AE%BE%E4%B8%AD/</guid><description>博客建设中</description><pubDate>Sat, 21 Mar 2026 00:00:00 GMT</pubDate><content:encoded>&lt;hr /&gt;
&lt;h1&gt;Hello World! 👋&lt;/h1&gt;
&lt;hr /&gt;
</content:encoded></item><item><title>Fuwari 博客文章开头配置（Frontmatter）详解</title><link>https://fuwari.vercel.app/posts/frontmatter/</link><guid isPermaLink="true">https://fuwari.vercel.app/posts/frontmatter/</guid><description>快速掌握 Fuwari 模板的文章元数据配置。</description><pubDate>Fri, 20 Mar 2026 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;在 Fuwari 模板中，每篇文章的开头都有几行被 &lt;code&gt;---&lt;/code&gt; 包裹的代码，这叫 &lt;strong&gt;Frontmatter&lt;/strong&gt;。它决定了文章的标题、日期、分类和封面图。如果配置错误，Cloudflare 构建时可能会报错。&lt;/p&gt;
&lt;h2&gt;1. 必填参数模板&lt;/h2&gt;
&lt;p&gt;新建文章时，请直接复制这段代码到 &lt;code&gt;.md&lt;/code&gt; 文件最上方：&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;---
title: 这里写文章标题
published: 2026-03-20
description: 这里写文章简短摘要
image: &apos;&apos;
tags: [标签1, 标签2]
category: &apos;分类名称&apos;
draft: false
---l:latest
&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;2. 关键参数详解&lt;/h2&gt;
&lt;h3&gt;标题与描述 (title &amp;amp; description)&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;title&lt;/strong&gt;: 必填。会显示在网页标签和文章页顶部。&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;description&lt;/strong&gt;: 建议填写。如果不填，列表页会显得很空。&lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;发布日期 (published)&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;格式&lt;/strong&gt;: 必须严格遵守 &lt;code&gt;YYYY-MM-DD&lt;/code&gt;（如 2026-03-20）。&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;注意&lt;/strong&gt;: 如果填写的日期是“未来”，文章在部署后可能不会立即显示在首页。&lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;封面图 (image)&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;本地图片&lt;/strong&gt;: 建议放在 &lt;code&gt;src/assets/images/&lt;/code&gt; 目录下。 引用路径：&lt;code&gt;../../assets/images/文件名.png&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;外链图片&lt;/strong&gt;: 直接填写完整的 URL 地址。&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;留空&lt;/strong&gt;: 如果不需要封面图，请保持 &lt;code&gt;&apos;&apos;&lt;/code&gt;。&lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;标签与分类 (tags &amp;amp; category)&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;tags&lt;/strong&gt;: 必须用中括号包裹，例如 &lt;code&gt;[Docker, NAS]&lt;/code&gt;。&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;category&lt;/strong&gt;: 建议只写一个分类，用单引号包裹，例如 &lt;code&gt;&apos;折腾记录&apos;&lt;/code&gt;。&lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;草稿状态 (draft)&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;false&lt;/strong&gt;: 正常发布（默认）。&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;true&lt;/strong&gt;: 设为草稿，访客在你的博客首页看不到这篇文章。&lt;/li&gt;
&lt;/ul&gt;
&lt;hr /&gt;
&lt;h2&gt;3. 三大避坑守则&lt;/h2&gt;
&lt;ol&gt;
&lt;li&gt;&lt;strong&gt;冒号后必须有空格&lt;/strong&gt;：例如 &lt;code&gt;title: 标题&lt;/code&gt; 是对的，&lt;code&gt;title:标题&lt;/code&gt; 会导致报错。&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;缩进要统一&lt;/strong&gt;：YAML 语法对空格非常敏感，不要使用 Tab 键，统一使用空格。&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;特殊字符引号&lt;/strong&gt;：如果标题里包含冒号 &lt;code&gt;:&lt;/code&gt; 或引号 &lt;code&gt;&quot;&lt;/code&gt;，建议将整个标题用单引号包裹起来，例如：&lt;code&gt;title: &apos;教程：如何配置 &quot;Fuwari&quot;&apos;&lt;/code&gt;。&lt;/li&gt;
&lt;/ol&gt;
&lt;hr /&gt;
&lt;h2&gt;4. 快速发布流程&lt;/h2&gt;
&lt;ol&gt;
&lt;li&gt;本地写好 &lt;code&gt;.md&lt;/code&gt; 文件并检查 Frontmatter。&lt;/li&gt;
&lt;li&gt;上传至 GitHub 的 &lt;code&gt;src/content/posts/&lt;/code&gt; 目录。&lt;/li&gt;
&lt;li&gt;等待 Cloudflare Pages 自动构建（约 1 分钟）。&lt;/li&gt;
&lt;li&gt;强制刷新域名（Ctrl + F5）查看效果。&lt;/li&gt;
&lt;/ol&gt;
</content:encoded></item></channel></rss>