网站图标
Favicon(网站图)
1
| $ favicon: /img/favicon.png
|
头像
1 2 3
| avatar: img: /img/avatar.jpg effect: false
|
主页封面图片
1 2
| index_img: /img/background.jpg
|
文章详情页的顶部图片
当没有在front-matter设置top_img和cover的情况下会显示该图
1 2
| default_top_img: /img/default_top_img.jpg
|
归档页顶部图片
1 2 3
|
archive_img: /img/archive.jpg
|
tag标签页顶部图
1 2
| tag_img: /img/tag_img.jpg
|
category页顶部图
1 2
| category_img: /img/category_img.jpg
|
统一文章封面
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
| cover: index_enable: true aside_enable: true archives_enable: true position: both default_cover: - https: - http: - http: - http: - http: - http:
|
如果需要为每一篇文章设置不同的封面,可以在文章的md文件中添加配置。
1 2 3 4 5 6 7 8
| --- title: Hello World tags: [hello] categories: description: hello word~ top_img: /img/hello-1.png cover: /img/hello-1.png ---
|