Ivan's Blog

用 Hugo 快速搭建博客

项目地址:https://github.com/gohugoio/hugo

快速初始化一个站点

  1. 安装 hugo 二进制命令程序:brew install hugo
  2. 创建一个网站,并设置配置文件的格式:hugo new site hugoBlog --format yaml
  3. 进入目录,然后初始化 git:git init
  4. 增加主题子模块:git submodule add --depth=1 <https://github.com/adityatelange/hugo-PaperMod.git> themes/PaperMod
  5. 设置主题:echo 'theme: ["PaperMod"]' >> config.yaml
  6. 创建一个 Hello World 文章:hugo new content posts/my-first-post.md
  7. 开启服务:hugo server -d

注意

有时候,在 content 目录下创建 posts 子目录,然后添加文件并不能被识别到,是因为所用主题的关系。有时候是在 content/blog 下新建文章文件,具体是哪里,需要看所用主题的说明。

#Blog #笔记 #Hugo

PREV Hugo Bear 主题的使用