14 lines
288 B
Plaintext
14 lines
288 B
Plaintext
@model HN.Application.LinkDTO[]
|
|
@{
|
|
ViewData["Title"] = "Latest Links";
|
|
}
|
|
|
|
<a asp-action="Create" title="New post">Post a new super duber link</a>
|
|
|
|
<p>Here are the links</p>
|
|
<ul>
|
|
@foreach (var link in Model)
|
|
{
|
|
<li>@link.Url created at @link.CreatedAt.ToLocalTime()</li>
|
|
}
|
|
</ul> |