소스 검색

posts widget: Fix image link

George Cushen 8 년 전
부모
커밋
74de372781
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      layouts/partials/post_li.html

+ 1 - 1
layouts/partials/post_li.html

@@ -3,7 +3,7 @@
 
 <div class="article-list-item" itemscope itemprop="blogPost">
   {{ if $post.Params.image }}
-  <a href="{{ .Permalink }}">
+  <a href="{{ $post.Permalink }}">
     <img src="{{ "/img/" | relURL }}{{ $post.Params.image }}" class="article-banner"
     itemprop="image">
   </a>