This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

core / appview / pages / templates / fragments / comment / pullComment.html
500 B 13 lines
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 }}