Hero Image of content
安装主题

从零开始安装主题。

前提条件

创建站点

hugo new site [sitename]

cd [sitename]

# 删除站点的 themes 目录
rm -rf themes

初始化 Hugo 模块

hugo mod init github.com/[username]/[sitename]

导入主题模块

在 hugo.toml 中配置主题

[module]
[[module.imports]]
  path = 'github.com/mrhelloboy/seven'

因为主题需要额外的配置参数,为了避免出错,建议先使用本示例的配置文件,然后再按需修改。

更多 hugo 模块的说明及使用,请参考 Hugo Modules

安装依赖及启动

hugo mod npm pack

npm install

hugo server