插入代码
首先我们找到侧边栏模块 next/layout/_macro/sidebar.swig ,这个负责渲染侧边栏。在sidebar.swig的if theme.links的end if后面添加以下代码:
1 | {% if theme.recent_posts %} |
添加配置
在NexT主题目录下的_config.yaml配置文件,添加下面配置:
1 | recent_posts_title: 最新文章 |
配置完后,清一下Hexo缓存,再访问http://localhost:4000验证。
1 | hexo clean & hexo g & hexo s |