@*-------------- start --------------------------- @BRT.Lister(tableId:"Content", viewId:"Posts",pageSize: 4, fields: new[] {"Title", "PubDate", "Body","Summary", "PrimaryImage","Photos","Files"}, template: @<div> @if(item.Count >= 1) { <div class="box"> <h5>The title of the section goes here</h5> @foreach(EngineRecord record in item) { <div>Put your lister stuff in here</div> } </div> } </div>) ----------------- end ------------------------*@