This repository has no description
1{{ define "fragments/comment/pullComment" }}
2<div class="flex gap-2 -ml-4 py-4 w-full mx-auto group/comment">
3 <!-- left column: profile picture -->
4 <div class="flex-shrink-0 h-fit relative">
5 {{ template "user/fragments/picLink" (list .Comment.Did.String "size-8") }}
6 </div>
7 <!-- right column: name and body in two rows -->
8 <div class="flex-1 min-w-0">
9 {{ template "fragments/comment/commentHeader" . }}
10 {{ template "fragments/comment/commentBody" . }}
11 </div>
12</div>
13{{ end }}