hexo-theme-amane/layout/common/post/date.ejs

9 lines
317 B
Plaintext

<% if (post.date && !post.hidedate) { %>
<div class="<%= class_name %>">
<i class="fa fa-calendar"></i>
<a href="<%- url_for(post.path) %>">
<time datetime="<%= date_xml(post.date) %>" itemprop="datePublished"><%= date(post.date, date_format) %></time>
</a>
</div>
<% } %>