@inherits Custom.Hybrid.Razor14
@using ToSic.Razor.Blade;
<!-- unimportant stuff, hidden -->
Basic Example from App.Data The easiest... <!-- unimportant stuff, hidden -->
<ul>
@foreach (var person in AsList(App.Data["Persons"])) {
<li @Edit.TagToolbar(Content, settings: new { hover = "left" })>
@if (Text.Has(person.Mugshot)) {
<img loading="lazy" src='@Link.Image(person.Mugshot, width: 50, height: 50, resizeMode: "crop")' width="50px" style="border-radius: 50%">
}
@person.FirstName @person.LastName
</li>
}
</ul>
<!-- unimportant stuff, hidden -->