@inherits umbraco.MacroEngines.DynamicNodeContext @* Macro to display a gallery from a media folder. Add the below parameter to the macro and use it to point the macro at a specific media folder to display it's content as a simple list. Macro Parameters To Create, for this macro to work: Alias:mediaId Name:Media Folder ID Type:Single Media Picker *@ @if (Parameter.mediaId != null) { @* Get the media folder as a dynamic node *@ var mediaFolder = Library.MediaById(Parameter.mediaId); if (mediaFolder.Children.Any()) {
} }