@inherits Custom.Hybrid.Razor14
@using ToSic.Razor.Blade;
@using System.Linq;
<!-- unimportant stuff, hidden -->
<div @Sys.PageParts.InfoWrapper()>
@Html.Partial("../shared/DefaultInfoSection.cshtml")
<div @Sys.PageParts.InfoIntro()>
<h3>Simple First() and Last()</h3>
<p>This filters the authors with long first names.</p>
</div>
</div>
<ol>
<li>
First: @persons.First().FirstName
</li>
<li>
Last: @persons.Last().FirstName
</li>
</ol>
@* Footer *@
@Html.Partial("../Shared/Layout/FooterWithSource.cshtml", new { Sys = Sys })