@if (!string.IsNullOrEmpty(Model.Description))
{
}
@Safe.Raw(Model.Description)
@for (var index = 0; index < Model.Items.Length; index++)
{
var item = Model.Items[index];
var image = item.Image;
var description = item.Description;
@if (!String.IsNullOrWhiteSpace(image))
{
@:
}
}
@item.Title
@if (!String.IsNullOrWhiteSpace(description)) {@description
}