2018-11-01 01:35:09 +00:00
|
|
|
<% if (post.prev || post.next) { %>
|
2018-09-10 09:21:59 +00:00
|
|
|
<nav id="article-nav" class="article-nav">
|
2020-12-06 11:57:22 +00:00
|
|
|
<span class="article-nav-link-wrap newer">
|
|
|
|
<% if (post.prev) { %>
|
|
|
|
<strong><%= __('newer') %></strong>
|
|
|
|
<a href="<%- url_for(post.prev.path) %>">
|
2022-04-05 06:01:28 +00:00
|
|
|
<div class="article-nav-title"><%= post.prev.title %></div>
|
2018-09-10 09:21:59 +00:00
|
|
|
</a>
|
2020-12-06 11:57:22 +00:00
|
|
|
<% } %>
|
|
|
|
</span>
|
|
|
|
<span class="article-nav-link-wrap older">
|
|
|
|
<% if (post.next) { %>
|
|
|
|
<strong><%= __('older') %></strong>
|
|
|
|
<a href="<%- url_for(post.next.path) %>">
|
2018-09-10 09:21:59 +00:00
|
|
|
<div class="article-nav-title"><%= post.next.title %></div>
|
|
|
|
</a>
|
2020-12-06 11:57:22 +00:00
|
|
|
<% } %>
|
|
|
|
</span>
|
2018-09-10 09:21:59 +00:00
|
|
|
</nav>
|
|
|
|
<% } %>
|