2020-03-18 23:14:09 +08:00
|
|
|
|
<!--
|
|
|
|
|
is_tag() 检查当前页面是否为标签归档页面。
|
|
|
|
|
is_tag('hobby') 如果给定一个字符串作为参数,将会检查目前是否为指定标签。
|
|
|
|
|
-->
|
|
|
|
|
<% if (is_tag()) { %>
|
2020-03-19 18:11:13 +08:00
|
|
|
|
<div class="tag-container">
|
2020-03-22 20:31:13 +08:00
|
|
|
|
<div class="tag-name"><i class="fa fa-tag"></i> <%- __('tag') %>:<%= page.tag %> [<%= page.posts.length %>]</div>
|
2020-03-19 18:11:13 +08:00
|
|
|
|
</div>
|
|
|
|
|
<%- partial('archive-post') %>
|
2020-03-18 23:14:09 +08:00
|
|
|
|
<% } %>
|