17 lines
365 B
Plaintext
17 lines
365 B
Plaintext
@model Application.LinkDTO[]
|
|
@{
|
|
ViewData["Title"] = "Latest links";
|
|
}
|
|
|
|
<h1>Latest links</h1>
|
|
|
|
@if (Model.Length == 0) {
|
|
<p>No links yet :'(</p>
|
|
} else {
|
|
<ul>
|
|
@foreach (var link in Model)
|
|
{
|
|
<li>@link.Url - @link.CreatedAt - 🗨 @link.CommentsCount - <a asp-controller="Links" asp-action="Show" asp-route-linkId="@link.Id">Show</a></li>
|
|
}
|
|
</ul>
|
|
} |