friendship ended with social-app. php is my new best friend
at main 531 B view raw
1<div class="postEmbeds img-{count($embeds)}"> 2 {foreach $embeds as $i => $embed} 3 <div class="img" id="img-{$postId}-{$i+1}-small"> 4 <button type="button" class="btn-invis" popovertarget="img-full-{$postId}-{$i+1}"><img src="{$embed->imgUrl}" alt="{$embed->alt}" loading="lazy" /></button> 5 </div> 6 <div id="img-full-{$postId}-{$i+1}" popover> 7 <img src="{$embed->imgUrl}" alt="{$embed->alt}" loading="lazy" /> 8 <div class="alt" n:if="$embed->alt !== ''">{$embed->alt}</div> 9 </div> 10 {/foreach} 11</div>