hexo-theme-stellar/layout/notes.ejs

13 lines
420 B
Plaintext
Raw Normal View History

2024-05-13 09:45:38 +08:00
<%# 笔记列表页主体部分 %>
<div class="post-list post">
<% page.posts.each(post => { %>
<a
class="post-card<%= scrollreveal(' ') %> post"
href="<%= url_for(post.link || post.path) %><%= page.activeTag ? `?tag=${page.activeTag}` : '' %>"
>
<%- include('_partial/main/notebook/note_card', { note: post }) %>
</a>
<% }) %>
</div>
<%- include('_partial/main/notebook/paginator') %>