fix(paginator): disable escape

This commit is contained in:
curben 2019-10-24 05:03:12 +01:00
parent fb78e67e55
commit e953758c88
No known key found for this signature in database
GPG Key ID: 5D9DB57A25D34EE3
1 changed files with 4 additions and 3 deletions

View File

@ -17,12 +17,13 @@
<% if (page.total > 1) { %> <% if (page.total > 1) { %>
<nav id="page-nav" class="page-nav"> <nav id="page-nav" class="page-nav">
<% <%
let prev_text = '&laquo; ' + __('prev') const prev_text = '&laquo; ' + __('prev')
let next_text = __('next') + ' &raquo;' const next_text = __('next') + ' &raquo;'
%> %>
<%- paginator({ <%- paginator({
prev_text: prev_text, prev_text: prev_text,
next_text: next_text next_text: next_text,
escape: false
}) %> }) %>
</nav> </nav>
<% } %> <% } %>