toolshugo Hugo 2021-05-16 Source Edit History hugo Quick Start 安装 Hugo12sudo apt-get install hugo -yhugo version doc 基本使用123hugo new site <sitename> # 会创建一个<sitename>的文件夹cd <sitename>hugo new posts/first.md # 在 content 目录下创建一个`posts/first.md` 目录结构: 123456789101112131415.├── archetypes│ └── default.md├── config.toml├── content│ └── posts│ └── first.md├── data├── layouts├── resources│ └── _gen│ ├── assets│ └── images├── static└── themes Reference doc One More Thing-