Преглед изворни кода

fix: feat(project): list associated posts

This commit fixes 3d9a1277a82ded759843395024e531c64437b91c

Fix #793
See #767
George Cushen пре 6 година
родитељ
комит
eb5c91f8f1
1 измењених фајлова са 3 додато и 4 уклоњено
  1. 3 4
      layouts/section/post.html

+ 3 - 4
layouts/section/post.html

@@ -11,13 +11,12 @@
 
 
   {{ $paginator := .Paginate .Data.Pages }}
   {{ $paginator := .Paginate .Data.Pages }}
   {{ range $paginator.Pages }}
   {{ range $paginator.Pages }}
-    {{ $params := dict "post" . }}
     {{ if eq $.Params.list_format 0 }}
     {{ if eq $.Params.list_format 0 }}
-      {{ partial "post_li_simple" $params }}
+      {{ partial "post_li_simple" . }}
     {{ else if eq $.Params.list_format 1 }}
     {{ else if eq $.Params.list_format 1 }}
-      {{ partial "post_li_detailed" $params }}
+      {{ partial "post_li_detailed" . }}
     {{ else }}
     {{ else }}
-      {{ partial "post_li_stream" $params }}
+      {{ partial "post_li_stream" . }}
     {{ end }}
     {{ end }}
   {{ end }}
   {{ end }}