hexo

打开themes/next/layout/_macro/post.swig文件,搜索rel="tag">#,将#换成<i class="fa fa-tag"></i>,效果如下

1
2
3
4
5
<div class="post-tags">
{% for tag in post.tags %}
<a href="{{ url_for(tag.path) }}" rel="tag"><i class="fa fa-tag"></i> {{ tag.name }}</a>
{% endfor %}
</div>

参考