Hexo-NexT-文章页面去掉页首的描述(description)

需求描述

如下图,我们想去掉页首显示的这个 description,因为这个 description 只在首页显示就够了。

20210329001641

解决方法

..\themes\next\layout\_macro\post.swig 文件中搜索 description,找到下面这段代码,删去即可。

1
2
3
{%- if post.description and (not theme.excerpt_description or not is_index) %}
<div class="post-description">{{ post.description }}</div>
{%- endif %}

20210329001034

效果

20210329001856


版权声明: 本博客所有文章除特别声明外,均采用 CC BY-SA 4.0 协议 ,转载请注明出处!