menu添加,生成
_config.yml
1
2
3
4
5
6menu:
Home: /
Archives: /archives
Tags: /tags
Categories: /categories
About: /aboutcategories tags
1
2$ hexo new page 'categories'
$ hexo new page 'tags'
相应的index.md为:
1 | --- |
1 | --- |
主题nav.pug修改
1 | .page-top.animated.fadeInDown |
主题page.pug 修改
1 | extends partial/layout |
对应样式添加
写了几个简单的样式
1 | .tag,.cat{ |
发布即可
1 | $ hexo clean |