post.ejs 839 B

1234567891011121314151617181920212223242526272829303132
  1. <article class="post reveal<%= (post.title) ? "" : "no-title" %>">
  2. <section class="meta">
  3. <% if (post.title) { %>
  4. <h2 class="title">
  5. <a href="<%- url_for(post.path) %>">
  6. <%= post.title %>
  7. </a>
  8. </h2>
  9. <% } %>
  10. <time>
  11. <%= date(post.date, 'MMM D, YYYY') %>
  12. </time>
  13. <%- partial('categories',{post:post}) %>
  14. </section>
  15. <section class="article typo">
  16. <%- post.excerpt || post.content %>
  17. <% if (post.excerpt) { %>
  18. <div class="readmore">
  19. <a href="<%- url_for(post.path) %>">Read More</a>
  20. </div>
  21. <% } %>
  22. <% if (post.tags && post.tags.length) { %>
  23. <div class="full-width auto-padding tags">
  24. <% post.tags.each(function(item){ %>
  25. <a href="<%- url_for(item.path) %>"><%=item.name %></a>
  26. <%})%>
  27. </div>
  28. <% } %>
  29. </section>
  30. </article>