hexo增加tags页面

1.生成tags的page

1
hexo new page tags

2.在新生成的文件中增加一行type: tags

1
2
3
title: Tags
date: 2014-12-22 12:39:04
type: tags

3.在_config.next.yml中添加tags的menu

1
2
3
4
menu:
home: / || fa fa-home
archives: /archives/ || fa fa-archive
tags: /tags/ || fa fa-tags

来源

    error_page 404 /index.html;
    location = /404/ {
            root /root/myblog/public;
            internal;
    }