Skip to content

Commit dc43417

Browse files
Fix path to article partial decorator
1 parent 91f718a commit dc43417

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

layouts/partials/posts/list-with-summary.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<div class="post-list">
44
{{ range $posts }}
5-
{{ with partial "_decorators/post.html" . }}
5+
{{ with partial "_decorators/article.html" . }}
66
{{ partial "posts/meta.html" . }}
77
{{ partial "posts/summary.html" . }}
88
{{ end }}

layouts/partials/posts/list-without-summary.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<div class="post-list">
44
{{ range $posts }}
5-
{{ with partial "_decorators/post.html" . }}
5+
{{ with partial "_decorators/article.html" . }}
66
<div class="post-meta">
77
<div>{{ partial "posts/meta.html" . }}</div>
88
</div>

0 commit comments

Comments
 (0)