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 / picHandle.html
285 B 10 lines
1{{ define "user/fragments/picHandle" }} 2<a href="/{{ . }}" class="flex items-center"> 3 <img 4 src="{{ tinyAvatar . }}" 5 alt="{{ . }}" 6 class="rounded-full h-6 w-6 mr-1 border border-gray-300 dark:border-gray-700" 7 /> 8 {{ . | truncateAt30 }} 9</a> 10{{ end }}