这个站点是 Hugo 静态博客
博文位置
普通博客文章写在:
content/posts/
例如:
content/posts/my-first-post.md
发布后会显示在:
- 首页「最新文章」
/posts/- 搜索结果
笔记位置
技术笔记、知识库条目写在:
content/notes/
例如:
content/notes/hugo-deploy-note.md
发布后会显示在:
/notes/- 搜索结果
Frontmatter 模板
新建 Markdown 文件时,使用下面的头部:
---
title: "标题"
date: 2026-06-10
draft: false
categories:
- 技术笔记
tags:
- Hugo
---
其中 draft: false 表示公开显示;如果设置成 draft: true,Hugo 默认不会发布。
评论