Yulong Niu

个人博客

使用Hugo搭建博客

Posted at — Nov 3, 2019

Octopress迁移至Hugo,希望可以稳定地维持5年。

1. 安装

## 安装hogu
$ sudo dnf install hugo

## 创建个人博客目录
$ hugo new site HugoBlog
$ cd HugoBlog

## 选择主题
$ cd themes
$ git clone https://github.com/vividvilla/ezhil.git
$ cd ..

## 启动hugo
$ hugo server

## 启动hugo并预览博文
$ hugo server -D

2. 基本配置

2.1 配置主页

编辑模板HugoBlog/config.toml

2.2 配置博文header

编辑HugoBlog/archetypes/default.md,例如:

---
title: "{{ replace .Name "-" " " | title }}"
date: {{ .Date }}
description: ""
tags: []
disqus: false
draft: true
---

draft: true为私密博文,draft: false为公开博文。

3. 更新博文

## 博文放在HugoBlog/content/posts/
## 图片放在HugoBlog/static/images/

## 添加新博文
$ cd HugoBlog
$ hugo new posts/newpost.md

## 添加新页面
$ cd HugoBlog
$ hugo new about.md

4. 发布博文

## 可发布文件夹在HugoBlog/public
$ hugo

参考网址

更新记录

2021年10月18日