Inline Image in block

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>

What sort of field type is that where you are using the kirbytag?

this is the blueprint:
image

and this is what it looks like:

That doesn’t quite answer my question, but assuming that this is a text block, and not a markdown block, to use it with Kirbytags you would have to render the field with the kirbytext() method. But I’m not sure that images will even work in a writer field (which is what a text block uses).

that was it. I wasn’t aware that you couldn’t do markup in a writer field. all good now.