修改导航栏内容

_config.butterfly.yml中找到menu,添加所需的菜单列表。

添加格式如下:

1
2
3
4
5
6
7
menu:
首页: / || fas fa-home
归档: /archives/ || fas fa-archive
标签: /tags/ || fas fa-tags
分类: /categories/ || fas fa-folder-open
留言板: /comments/ || fas fa-envelope-open
友链: /link/ || fas fa-link

其中||后面的是图标名。

添加.css样式文件

1
2
3
4
5
6
7
8
/* 导航栏做居中处理 */
#nav-right{
flex:1 1 auto;
justify-content: flex-end;
margin-left: auto;
display: flex;
flex-wrap:nowrap;
}

导航栏居中