15 lines
438 B
Plaintext
Raw Normal View History

2016-11-18 17:58:00 +00:00
component Avatar(user *arn.User)
a.user.ajax(href="/+" + user.Nick, title=user.Nick)
AvatarNoLink(user)
component AvatarNoLink(user *arn.User)
if user.Avatar != ""
2017-06-12 22:06:35 +00:00
img.user-image(src=user.Avatar + "/small", alt=user.Nick)
else
2017-06-12 22:06:35 +00:00
SVGAvatar
2017-06-12 22:06:35 +00:00
component SVGAvatar
svg.user-image(viewBox="0 0 50 50")
circle.head(cx="25", cy="19", r="10")
circle.body(cx="25", cy="50", r="20")
//- text(x="25", y="44", text-anchor="middle") TODO