给文章加上最新标志前言在这,我说一下,这个我是根据leonus的教程走的,有需要的小伙伴也可以去看他的,写得挺不错的,当然可以直接看我的,亲测最新版也可以搭建得上。魔改提纲如下:
1.修改[Blogroot]\themes\butterfly\scripts\helpers\page.js这个文件
2.修改[Blogroot]\themes\butterfly\layout\includes\mixins\post-ui.pug
3.添加自定义的css
整体改动不是很多,有时间的小伙伴都可以试试,挺方便的。
教程1.打开[Blogroot]\themes\butterfly\scripts\helpers\page.js,在最底部添加以下代码:
123456789// 最新文章hexo.extend.helper.register('newPost', function() { let name, time; hexo.locals.get('posts').map((item, index) => { if ( ...