temp rename file

This commit is contained in:
Bjarke Berg
2021-02-05 16:31:33 +01:00
parent 36e1c012d4
commit fb7f4cf55b

View File

@@ -1,13 +0,0 @@
@inherits Umbraco.Web.Common.AspNetCore.UmbracoViewPage<BlockListModel>
@using Umbraco.Core.Models.Blocks
@{
if (!Model.Any()) { return; }
}
<div class="umb-block-list">
@foreach (var block in Model)
{
if (block?.ContentUdi == null) { continue; }
var data = block.Content;
@Html.Partial("BlockList/Components/" + data.ContentType.Alias, block)
}
</div>