mirror of https://gitlab.com/curben/blog
fix(template): remove null-checking for post.prev.title
This commit is contained in:
parent
b687cd6666
commit
f56b7c176c
|
@ -4,13 +4,7 @@
|
||||||
<% if (post.prev) { %>
|
<% if (post.prev) { %>
|
||||||
<strong><%= __('newer') %></strong>
|
<strong><%= __('newer') %></strong>
|
||||||
<a href="<%- url_for(post.prev.path) %>">
|
<a href="<%- url_for(post.prev.path) %>">
|
||||||
<div class="article-nav-title">
|
<div class="article-nav-title"><%= post.prev.title %></div>
|
||||||
<% if (post.prev.title) { %>
|
|
||||||
<%= post.prev.title %>
|
|
||||||
<% } else { %>
|
|
||||||
(no title)
|
|
||||||
<% } %>
|
|
||||||
</div>
|
|
||||||
</a>
|
</a>
|
||||||
<% } %>
|
<% } %>
|
||||||
</span>
|
</span>
|
||||||
|
|
Loading…
Reference in New Issue