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/MyWebsite/Views/Gallery/Index.cshtml
T
Michael Gordeev ad8b23f727 Updated project
2020-03-03 16:49:41 +03:00

25 lines
507 B
Plaintext

@model ArtworkViewModel
@{
ViewData["Title"] = "My artworks";
}
<header>
<h1>My arts</h1>
</header>
<article class="gallery">
@if (Model.Images.Count > 0)
foreach (ImageModel image in Model.Images)
{
<a asp-action="Details" asp-route-id="@image.FileName"><img title="@image.Title" src="~/images/Gallery/@image.FileName" /></a>
}
else
{
<p class="comment">// No content available</p>
}
</article>
@section Imports
{
<link rel="stylesheet" type="text/css" href="~/css/Gallery.css" />
}