diff --git a/OurUmbraco.Site/Views/ContentLanding.cshtml b/OurUmbraco.Site/Views/ContentLanding.cshtml index 4d565639..6d202b54 100644 --- a/OurUmbraco.Site/Views/ContentLanding.cshtml +++ b/OurUmbraco.Site/Views/ContentLanding.cshtml @@ -2,7 +2,6 @@ @{ Layout = "~/Views/Master.cshtml"; } -
@@ -13,7 +12,17 @@ @Html.Raw(Model.Content.GetPropertyValue("bodyText"))
- @Umbraco.RenderMacro("ContentLanding-Summary") +
+ @foreach (var item in Model.Content.Children.Where(x => x.IsVisible())) + { +
+
+

@item.Name

+

@(item.GetPropertyValue("abstract"))

+
+
+ } +
\ No newline at end of file