You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
484 B

9 years ago
  1. <article class="content" id="<%= post.slug %>">
  2. <header>
  3. <% if(link_title) { %>
  4. <a href="<%= url_for(post.path) %>">
  5. <% } %>
  6. <h1 class="title"><%- post.title %></h1>
  7. <% if(link_title) { %>
  8. </a>
  9. <% } %>
  10. <p style="margin-bottom: 0;">
  11. <em id="written-by">Written by <%- post.author %></em>
  12. <br />
  13. <em id="published-on">Published on <%= post.date.format("DD MMMM YYYY") %></em>
  14. </p>
  15. </header>
  16. <%- post.content %>
  17. </article>