mirror of https://gitlab.com/curben/blog
feat(layout): add yearly and monthly archive links
This commit is contained in:
parent
dad0ed6b34
commit
c6a002b409
|
@ -1,6 +1,6 @@
|
|||
<%/* Date format is specified to skip timezone conversion */%>
|
||||
<% if (is_post()) { %>
|
||||
<time class="dt-published" datetime="<%= date(post.date, 'YYYY-MM-DD[T00:00:00.000Z]') %>" itemprop="datePublished"><%= date(post.date, 'D MMM YYYY') %></time>
|
||||
<% } else { %>
|
||||
<time datetime="<%= date(post.date, 'YYYY-MM-DD[T00:00:00.000Z]') %>" itemprop="datePublished"><%= date(post.date, 'D MMM YYYY') %></time>
|
||||
<% } %>
|
||||
<time <% if (is_post()) { %>class="dt-published"<% } %> datetime="<%= date(post.date, 'YYYY-MM-DD[T00:00:00.000Z]') %>" itemprop="datePublished">
|
||||
<%= date(post.date, 'D') %>
|
||||
<a href="/<%= config.archive_dir %>/<%= date(post.date, 'YYYY') %>/<%= date(post.date, 'MM') %>/" title="See <%= date(post.date, 'MMMM') %> <%= date(post.date, 'YYYY') %>'s posts"><%= date(post.date, ' MMM') %></a>
|
||||
<a href="/<%= config.archive_dir %>/<%= date(post.date, 'YYYY') %>/" title="See <%= date(post.date, 'YYYY') %>'s posts"><%= date(post.date, ' YYYY') %></a>
|
||||
</time>
|
||||
|
|
Loading…
Reference in New Issue