I have the following code in my kirby block and the images are visible at localhost, but not on the uploaded website…
<?php foreach ($block->images()->toFiles() as $image): ?>
<div class="project" style=" height: auto; background-image: url(<?= $image->url() ?>)">
<img src="data:image/gif;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mP8/x8AAwMCAO+ip1sAAAAASUVORK5CYII=" alt="6" />
</div>
<?php endforeach ?>
Is there something wrong?
Thanks for any help!