This repository has no description
0

Configure Feed

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

core / appview / pages / templates / user / fragments / picLink.html
352 B 15 lines
1{{ define "user/fragments/picLink" }} 2 {{ $did := index . 0 }} 3 {{ $classes := index . 1 }} 4 {{ $handle := resolve $did }} 5 <a href="/{{ $handle }}" title="{{ $handle }}"> 6 <img 7 src="{{ tinyAvatar $did }}" 8 alt="" 9 class="rounded-full border border-gray-300 dark:border-gray-700 {{ $classes }}" 10 /> 11 </a> 12{{ end }} 13 14 15