1
0
This repository has been archived on 2026-04-22. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
my-old-website/MyWebsite/Views/Gallery/Index.cshtml
T
2019-11-13 15:28:15 +03:00

17 lines
387 B
Plaintext

@{
ViewData["Title"] = "My artworks";
}
<header>
<h1>My arts</h1>
</header>
<article class="info-block gallery">
@foreach (Image image in Model)
{
<a asp-action="Details" asp-route-id="@image.FileName"><img title="@image.Title" src="~/images/Gallery/@image.FileName"/></a>
}
</article>
<link rel="stylesheet" type="text/css" href="~/css/Gallery.css" />