blog/themes/typing/layout/_partial/post/updated-date.ejs

6 lines
348 B
Plaintext
Raw Normal View History

<%/* User-specified updated date */%>
<%/* default post.updated is (almost) always is the time 'hexo generate' is executed */%>
<a href="<%- url_for(post.path) %>" class="<%= class_name %>">
2019-06-04 04:05:48 +00:00
<time datetime="<%= date(post.lastUpdated, 'YYYY-MM-DD[T00:00:00.000Z]') %>" itemprop="dateUpdated"><%= date(post.lastUpdated, date_format) %></time>
</a>