页面
默认页面
首先创建页面
hexo new page xxx
前往 source/xxx/index.md
,文件,设置 Front-matter
title:
comment: true # or false
设置 comment
为 true
会打开页面的评论功能
友情链接
首先创建页面
hexo new page friends
前往 source/friends/index.md
文件,设置 Front-matter
title: 友情链接 # 文章标题
layout: friends
comment: true # 是否需要评论 true: 是 false: 否
创建数据,参照 数据文件夹
创建 source/_data/friends.json
,格式如下
[
{
"category": "Category 1",
"data": [
{
"name": "xxx",
"url": "https://xxx.com/"
},
{
"name": "xxx",
"url": "https://xxx.com/"
}
]
},
{
"category": "Category 2",
"data": [
...
]
},
...
]
摄影/图像作品展示
首先创建页面
hexo new page photography
前往 source/photography/index.md
文件,设置 Front-matter
title: 我的摄影 # 文章标题
layout: photography
sidebar: false
创建数据,参照 数据文件夹
创建 source/_data/photography.json
,格式如下
[
{
"thumbnail": "https://thumbnail.jpg",
"photo": "https://photo.jpg",
"title": "This is title.",
"icon": "camera",
"place": "China"
},
{
"thumbnail": "https://thumbnail.jpg",
"photo": "https://photo.jpg",
"title": "This is title.",
"icon": "camera",
"place": "China"
},
...
]
thumbnail
缩略图
photo
原图
icon
参考 Ionicons name
字段
place
地点
最后更新于