I’m trying to insert an inline image in a layout:
(image: dsc_4503.jpg)
Born in the UK, Vanessa had an intense classical ballet training before heading to Leeds University to study Philosophy
and this is how I render it. But for some reason it will not render the image:
<?php foreach ($page->more_text()->toLayouts() as $layout): ?>
<div class="row" id="<?= $layout->id() ?>">
<?php foreach ($layout->columns() as $column): ?>
<div class="col-sm-<?= $column->span() ?>" >
<div class="blocks">
<?= $column->blocks() ?>
</div>
</div>
<?php endforeach ?>
</div>
<?php endforeach ?>
</div>
</section>