item.ejs 505 B

12345678910
  1. <div class="post">
  2. <a href="<%- url_for(post.path) %>" title="<%- post.title || "Untitled" %>">
  3. <%- image_tag(post.cover || theme.cover, {class: "cover", width: 680, height: 440}) %>
  4. </a>
  5. <div class="else">
  6. <p><%- post.date.locale("zh-cn").format("MMMM DD, YYYY") %></p>
  7. <h3><%- link_to(url_for(post.path), post.title || "Untitled", {class: "posttitle"}) %></h3>
  8. <p><%- truncate(strip_html(post.content), {length: 80, omission: '...'}) %></p>
  9. </div>
  10. </div>