godash/components/user.templ
2024-09-16 11:45:24 +02:00

11 lines
287 B
Text

package components
import "gitlab.unjx.de/flohoss/godash/services"
templ User(user services.User) {
<div class="avatar">
<div class="ring-primary ring-offset-base-100 w-16 rounded-full ring-2 ring-offset-2">
<img src={ string(templ.SafeURL(user.Gravatar)) }/>
</div>
</div>
}