hexo-theme-stellar/layout/notebooks.ejs

9 lines
344 B
Plaintext
Raw Permalink Normal View History

2024-05-13 09:45:38 +08:00
<%# 笔记本列表页主体部分 %>
<% for (const notebook of Object.values(theme.notebooks.tree)) { %>
<div class="post-list wiki">
<a class="post-card wiki<%= scrollreveal(' ') %>" href="<%= url_for(notebook.base_dir) %>">
<%- include('_partial/main/notebook/notebook_card', { notebook: notebook }) %>
</a>
</div>
<% } %>