hexo/themes/oranges/layout/archive.ejs

39 lines
1.0 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!-- 归档页展示本站所有文章按照年份降序归类url形式https://yoursite/archives/ -->
<!-- last: 按年份把文章分组,当前遍历到的年份 -->
<!-- now: 当前遍历到的文章的发布年份 -->
<div class="container archives">
<div class="post-list">
<%
var prev = -10086;// prev year
var curr;// curr year, ever step be updated
site.posts.sort('date', -1).each(function(item, index) {
curr = item.date.year()
if (curr !== prev) {
prev = curr;
%>
<!-- 后续文章的发布年份呈现 -->
<div class="content-title">
<h2>
<span><%- curr %></span>
</h2>
</div>
<%
}
%>
<div class="post-item" title="<%- item.title %>">
<div class="time-m-d"><%- item.date.format("MM-DD") %></div>
<div class="title">
<a href="<%- url_for(item.path) %>">
<span><%- item.title %></span>
</a>
</div>
</div>
<%
});
%>
</div>
</div>