<%# 笔记卡片 %>
<% if (note.cover) { %>
cover
<% } %>

<%= note.title %>

<% if (note.excerpt) { %> <%= strip_html(note.excerpt) %> <% } else if (note.description) { %> <%= note.description %> <% } else if (note.content && theme.notebook.auto_excerpt > 0) { %> <%= truncate(strip_html(note.content), { length: theme.notebook.auto_excerpt }) %> <% } %>

<% if (note.pin) { %> <%- icon('solar:pin-linear') %> <% } %> <%- icon('default:calendar') %> <% if (note.tags) { %> <% note.tags.forEach((tag, i) => { %> > <%= tag %> <% }) %> <% } %>