hn-20-2/Apps/Website/Views/Shared/_LinkItem.cshtml
2021-04-29 12:01:02 +02:00

11 lines
344 B
Plaintext

@model Application.LinkDTO
<article>
<h2>@Model.Url</h2>
<p>
<a asp-controller="Links" asp-action="Show" asp-route-linkId="@Model.Id">Show</a>
- Published at @Model.CreatedAt.ToLongDateString() by @Model.CreatedByUsername
- 🗨 @Model.CommentsCount
- 👍 @Model.UpvotesCount / 👎 @Model.DownvotesCount
</p>
</article>