this repo has no description
1{{ define "title" }}{{ or .Card.UserHandle .Card.UserDid }} · following {{ end }} 2 3{{ define "profileContent" }} 4 <div id="all-following" class="md:col-span-8 order-2 md:order-2"> 5 {{ block "following" . }}{{ end }} 6 </div> 7{{ end }} 8 9{{ define "following" }} 10 <p class="text-sm font-bold p-2 dark:text-white">ALL FOLLOWING</p> 11 <div id="following" class="grid grid-cols-1 gap-4 mb-6"> 12 {{ range .Following }} 13 {{ template "user/fragments/followCard" 14 (dict 15 "LoggedInUser" $.LoggedInUser 16 "UserDid" .UserDid 17 "Profile" .Profile 18 "FollowStatus" .FollowStatus 19 "FollowersCount" .FollowersCount 20 "FollowingCount" .FollowingCount) }} 21 {{ else }} 22 <p class="px-6 dark:text-white">This user does not follow anyone yet.</p> 23 {{ end }} 24 </div> 25{{ end }}