11 lines
316 B
Plaintext
11 lines
316 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()
|
|
- 🗨 @Model.CommentsCount
|
|
- 👍 @Model.UpvotesCount / 👎 @Model.DownvotesCount
|
|
</p>
|
|
</article> |