Files
yavsc/src/Yavsc/Views/Shared/DisplayTemplates/IApplicationUser.cshtml
Paul Schneider 3f1bfc1c3c
All checks were successful
Dotnet build and test / log-the-inputs (push) Successful in 5s
Dotnet build and test / build (push) Successful in 1m58s
fixies the refact of blog spot index
2025-06-29 19:53:56 +01:00

11 lines
399 B
Plaintext

@using Yavsc.Abstract.Identity
@model IApplicationUser
@{
var avuri = "/Avatars/" + Model.UserName + ".s.png";
}
<div class="userinfo">
<a title="Posts" asp-controller="Blogspot" asp-action="Index" asp-route-id="@Model.UserName" class="btn btn-primary">
<img src="@avuri" asp-append-version="true" class="smalltofhol" alt="@Model.UserName" title="@Model.UserName" />
</a>
</div>