Hugo博客文章原型模版
2023年12月7日 · 132 字 · 1 分钟 · Hugo
Hugo博客文章原型模版
原型模版文件路径
- 默认模版:
archetypes/default.md
- 可参考默认模版,自定义新模版
archetypes/
├── articles.md
├── default.md
└── tutorials.md
模版格式
+++
date = '{{ .Date }}'
draft = true
title = '{{ replace .File.ContentBaseName `-` ` ` | title }}'
+++
使用模版
- 默认模版
hugo new content posts/my-first-post.md
- 指定模版
hugo new content --kind tutorials articles/something.md