16 lines
292 B
Plaintext
16 lines
292 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>
|
|
<partial name="_LinkItem" model="@link" />
|
|
</li>
|
|
}
|
|
</ul> |