-
Notifications
You must be signed in to change notification settings - Fork 277
启用about页
Wee edited this page Aug 2, 2018
·
4 revisions
在hexo目录下执行
hexo new page "about"
在hexo目录下source/about/index.md
中添加字段layout: about
(这个字段必须有且不可更改为其他),title
字段修改为about页的标题(自行修改),正文为about页的内容(自行修改),例如:
---
title: 这是自我介绍的题目
layout: about
---
这是一段自我介绍
在主题配置文件中添加以下字段,enable
字段控制是否开启about,image
字段内容为about页的banner图像地址,不填写则默认使用首页banner图像。
about:
enable: true
image: '/intro/about-page.jpg'
about页的入口在首页的侧边栏中。