-
Notifications
You must be signed in to change notification settings - Fork 212
添加自定义页面
Yuexun Jiang edited this page Dec 12, 2016
·
1 revision
- 新建一个自定义页面(以添加关于页为例):
hexo new page about
- 编辑生成的
about/index.md
文件,设置布局为page
:
title: about
layout: page
默认开启评论(如果使用了多说或 Disqus),添加 comments 字段并设置为 false 可关闭。
- 在主题配置文件(
_config.yml
)中添加链接:
# ===========================================
# Menu Settings
# ===========================================
menu:
Home: /
Archives: /archives/
About: /about
- 在使用的语言文件下添加对应的字段(默认为
languages/default.yml
):
menu:
home: Home
archives: Archives
tags: Tags
categories: Categories
about: About