Hopefully you're developing this as a skin-theme for 0.5 git version?!
Sent from my MZ604 using Tapatalk
@model IEnumerable<MPExtended.Services.MediaAccessService.Interfaces.Movie.WebMovieBasic>
@{
ViewBag.Title = "Movies";
}
@{
if (@Model != null && @Model.Count(p => p.Title != "") > 0)
{
<h2>Movies</h2>
foreach (var movie in Model)
{
<a href="https://www.team-mediaportal.com" target="_blank">
<img src="@Url.Action("Image", "MovieLibrary", new { movie = movie.Id })" alt="" width="190" height="260"/></a>
}
}
}