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 / pic.html
247 B 11 lines
1{{ define "user/fragments/pic" }} 2 {{ $did := index . 0 }} 3 {{ $classes := index . 1 }} 4 <img 5 src="{{ tinyAvatar $did }}" 6 alt="" 7 class="rounded-full border border-gray-300 dark:border-gray-700 {{ $classes }}" 8 /> 9{{ end }} 10 11