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 / replyPlaceholder.html
497 B 15 lines
1{{ define "fragments/comment/replyPlaceholder" }} 2<div class="py-2 px-6 border-t flex gap-2 items-center border-gray-300 dark:border-gray-700"> 3 {{ if .LoggedInUser }} 4 {{ template "user/fragments/pic" (list .LoggedInUser.Did "size-8 mr-1") }} 5 {{ end }} 6 <input 7 class="w-full p-0 border-none focus:outline-none bg-transparent" 8 placeholder="Leave a reply..." 9 hx-get="/comment/reply" 10 hx-trigger="focus" 11 hx-target="closest div" 12 hx-swap="outerHTML" 13 > 14</div> 15{{ end }}