Explorar el Código

[bug fix] thumbnail refer to incorrect image url when site is put in a subdirectory

In hexo 3.2.0, the implementation of url_for() has been changed.
zlargon hace 9 años
padre
commit
f8430c10b0
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. 2 2
      layout/common/thumbnail.ejs

+ 2 - 2
layout/common/thumbnail.ejs

@@ -1,8 +1,8 @@
 <a href="<%- url_for((post.link ? post.link : post.path)) %>" class="thumbnail">
     <% var thumbnailUrl = thumbnail(post) %>
     <% if (thumbnailUrl) { %>
-        <span style="background-image:url(<%- url_for(thumbnailUrl) %>)" alt="<%= post.title %>" class="thumbnail-image"></span>
+        <span style="background-image:url(<%= thumbnailUrl %>)" alt="<%= post.title %>" class="thumbnail-image"></span>
     <% } else { %>
         <span class="thumbnail-image thumbnail-none"></span>
     <% } %>
-</a>
+</a>