2020-03-13 19:26:09 +08:00
|
|
|
<!-- is_post() 检查当前页面是否为文章 -->
|
|
|
|
<% if (!is_post()) { %>
|
|
|
|
<li class="post-item">
|
2020-03-13 22:37:38 +08:00
|
|
|
<h2>文章标题:<a href="<%- url_for(post.path) %>"><%= post.title %></a></h2>
|
2020-03-13 19:26:09 +08:00
|
|
|
<h4>生成日期:<%= post.date %></h4>
|
|
|
|
<h4>文章路径:<%= post.path %></h4>
|
|
|
|
<h4>文章分类:
|
|
|
|
<% post.categories.forEach(function(category) { %>
|
|
|
|
<a class="category-link-item" href="<%- url_for(category.path) %>" rel="category"><%= category.name %></a>
|
|
|
|
<% }); %>
|
|
|
|
</h4>
|
|
|
|
<h4>文章标签:
|
|
|
|
<% post.tags.forEach(tag => { %>
|
|
|
|
<a class="tag-link-item" href="<%- url_for(tag.path) %>" rel="tag"><%= tag.name %></a>
|
|
|
|
<% }); %>
|
|
|
|
</h4>
|
|
|
|
</li>
|
2020-03-13 22:37:38 +08:00
|
|
|
<% } %>
|
|
|
|
|
|
|
|
<!-- 如果点开的当前页面是文章内容 -->
|
|
|
|
<% if (is_post()) { %>
|
|
|
|
<%- partial('article') %>
|
2020-03-13 19:26:09 +08:00
|
|
|
<% } %>
|