hexo-theme-keep/layout/archive.ejs

14 lines
606 B
Plaintext
Raw Normal View History

<!-- 检查当前页面是否为存档页面 -->
<h1> 存档页面 </h1>
<% if (is_archive()) { %>
<ul class="post-container">
<% page.posts.forEach(post => { %>
<li class="post-item">
<div> 文章标题:<%= post.title %> </div>
<div> 建立日期:<%= date(post.date, 'YYYY-MM-DD HH:MM:SS') %> </div>
<div> 更新日期:<%= date(post.updated, 'YYYY-MM-DD HH:MM:SS') %> </div>
<div> 页面摘要:<%= post.excerpt ? post.excerpt : '页面无摘要' %> </div>
</li>
<% }) %>
</ul>
<% } %>