date.ejs 294 B

12345678
  1. <% if (post.date && !post.hidedate){ %>
  2. <div class="<%= class_name %>">
  3. <i class="fa fa-calendar"></i>
  4. <a href="<%- url_for(post.path) %>">
  5. <time datetime="<%= date_xml(post.date) %>" itemprop="datePublished"><%= date(post.date, date_format) %></time>
  6. </a>
  7. </div>
  8. <% } %>