这是我的第一篇博客文章!

这个博客使用以下技术搭建:

  • Hugo:静态网站生成器,速度快
  • PaperMod:简洁现代的主题
  • GitHub Pages:免费托管
  • GitHub Actions:推送后自动构建部署

写作工作流

# 新建文章
hugo new content posts/my-post.md

# 本地预览(含草稿)
hugo server -D

# 推送后自动部署
git add . && git commit -m "new post" && git push

Happy blogging!