hexo的基本使用和模板

常用模版

1
2
3
4
5
---
title: 个人博客搭建
tags: [博客, hexo]
date: 2025-06-01
---

快捷部署:

1
hexo clean && hexo g && hexo d

Quick Start

创建一篇文章

1
$ hexo new "My New Post"

更多信息: Writing

运行服务

1
$ hexo server

更多信息: Server

生成静态文件

1
$ hexo generate

更多信息: Generating

部署到远程站点

1
$ hexo deploy

更多信息: Deployment

文章模版

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
---
# 基本信息
title: {{ title }}
date: {{ date }}
tags: []
categories: []
description: # excerpt 也可
# 封面
cover:
banner:
poster: # 海报(可选,全图封面卡片)
topic: 标题上方的小字 # 可选
headline: 大标题 # 必选
caption: 标题下方的小字 # 可选
color: 标题颜色 # 可选
# 插件
sticky: # 数字越大越靠前
mermaid:
katex:
mathjax:
# 可选
topic: # 专栏 id
author:
references:
comments: # 设置 false 禁止评论
indexing: # 设置 false 避免被搜索
breadcrumb: # 设置 false 隐藏面包屑导航
leftbar:
rightbar:
h1: # 设置为 '' 隐藏标题
type: # tech/story
---