item.ejs 487 B

12345678910
  1. <div class="post">
  2. <a href="<%- 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(post.path, post.title || "Untitled", {class: "posttitle"}) %></h3>
  8. <p><%- truncate(strip_html(post.content), {length: 80, omission: '...'}) %></p>
  9. </div>
  10. </div>