소스 검색

website: Fix bug causing too few Recent Posts in sidebar

Kevin van Zonneveld 6 년 전
부모
커밋
1d4c9a5720
1개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. 3 3
      website/themes/uppy/layout/partials/blog.ejs

+ 3 - 3
website/themes/uppy/layout/partials/blog.ejs

@@ -22,14 +22,14 @@
             }
             seriesTracker[post.series]++
           }
-          totalCnt++
-
+          
           if (totalCnt > 10 || seriesTracker[post.series] > 1) {
             return false
           }
+          totalCnt++
         %>
           <li>
-              <a href="/<%- post.path %>" class="sidebar-link<%- page.title === post.title ? ' current' : '' %>"><%- title %></a>
+              <a href="/<%- post.path %>" class="sidebar-link<%- page.title === post.title || (page.series && page.series === post.series) ? ' current' : '' %>"><%- title %></a>
           </li>
       <% }) %>
       </ul>