hexo+github建站之近期文章
增加近期文章显示,直接修改主题sidebar.swig文件即可。
sidebar文件
在layout/_macro/sidebar.swig文件if theme.links前加入以下代码
1 | {% if theme.recent_posts %} |
主题配置
在主题配置文件 _config.yml 中新增3个变量
1 | recent_posts: true |
效果验证
1 | hexo clean; hexo g; hexo s |
增加近期文章显示,直接修改主题sidebar.swig文件即可。
在layout/_macro/sidebar.swig文件if theme.links前加入以下代码
1 | {% if theme.recent_posts %} |
在主题配置文件 _config.yml 中新增3个变量
1 | recent_posts: true |
1 | # hexo clean; hexo g; hexo s |