Files
site/themes/minimo/layouts/partials/comments/staticman/replies-list.html
2021-09-06 13:02:12 -04:00

12 lines
389 B
HTML

{{- .Page.Scratch.Add "comments_depth" 1 -}}
{{- $comments := ( index .Page.Site.Data.comments .Page.File.UniqueID ) -}}
{{- $parentId := .ParentId -}}
<ol class='children'>
{{- range $index, $comment := $comments -}}
{{- if ( eq $comment.parent_id $parentId ) -}}
{{ partial "comments/staticman/comment" ( dict "Comment" $comment "Page" $.Page ) }}
{{- end -}}
{{- end -}}
</ol>