Hexo博客NexT主题美化之文末统一添加“本文结束”标记

2019-03-05  本文已影响0人  潘高PG

前言

更多效果展示,请访问我的 个人博客


效果图:

image

教程:

  1. 在目录 themes/next/layout/_macro/ 下添加 passage-end-tag.swig ,内容如下:
<div>
    {% if not is_index %}
        <div style="text-align:center;color: #ccc;font-size:14px;">------ 本文结束------</div>
    {% endif %}
</div>
  1. 打开 themes/next/layout/_macro/post.swig 文件,新增内容如下:
<div>
    {% if not is_index %}
    {% include 'passage-end-tag.swig' %}
    {% endif %}
 </div>
  1. 打开主题配置文件 ,添加代码如下:
# 文章末尾添加“本文结束”标记
passage_end_tag:
enabled: true

上一篇 下一篇

猜你喜欢

热点阅读